define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfAutomaticFieldInfoCollection = (function () {
function PdfAutomaticFieldInfoCollection() {
this.automaticFieldsInformation = [];
}
Object.defineProperty(PdfAutomaticFieldInfoCollection.prototype, "automaticFields", {
get: function () {
return this.automaticFieldsInformation;
},
enumerable: true,
configurable: true
});
PdfAutomaticFieldInfoCollection.prototype.add = function (fieldInfo) {
return this.automaticFields.push(fieldInfo);
};
return PdfAutomaticFieldInfoCollection;
}());
exports.PdfAutomaticFieldInfoCollection = PdfAutomaticFieldInfoCollection;
});
|