| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1× 1× 1× 1× 25× 25× 25× 25× 25× 1× 1× | define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ProcedureSets = (function () {
function ProcedureSets() {
this.pdf = 'PDF';
this.text = 'Text';
this.imageB = 'ImageB';
this.imageC = 'ImageC';
this.imageI = 'ImageI';
}
return ProcedureSets;
}());
exports.ProcedureSets = ProcedureSets;
});
|