define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfFileStructure = (function () {
function PdfFileStructure() {
this._incrementalUpdate = true;
}
Object.defineProperty(PdfFileStructure.prototype, "crossReferenceType", {
get: function () {
return this._crossReferenceType;
},
set: function (value) {
this._crossReferenceType = value;
},
enumerable: true,
configurable: true
});
Object.defineProperty(PdfFileStructure.prototype, "isIncrementalUpdate", {
get: function () {
return this._incrementalUpdate;
},
set: function (value) {
this._incrementalUpdate = value;
},
enumerable: true,
configurable: true
});
return PdfFileStructure;
}());
exports.PdfFileStructure = PdfFileStructure;
});
|