all files / document/automatic-fields/ automatic-field-info-collection.js

100% Statements 11/11
100% Branches 0/0
100% Functions 5/5
100% Lines 11/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22   25×     55×         10×        
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;
});