define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfCollection = (function () {
function PdfCollection() {
}
Object.defineProperty(PdfCollection.prototype, "count", {
get: function () {
if (typeof this.collection === 'undefined') {
this.collection = [];
}
return this.collection.length;
},
enumerable: true,
configurable: true
});
Object.defineProperty(PdfCollection.prototype, "list", {
get: function () {
Iif (typeof this.collection === 'undefined') {
this.collection = [];
}
return this.collection;
},
enumerable: true,
configurable: true
});
return PdfCollection;
}());
exports.PdfCollection = PdfCollection;
});
|