@cantoo/pdf-lib
Version:
Create and modify PDF files with JavaScript
22 lines • 808 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const errors_1 = require("../errors");
class PDFObject {
registerChange() {
throw new errors_1.MethodNotImplementedError(this.constructor.name, 'registerChange');
}
clone(_context) {
throw new errors_1.MethodNotImplementedError(this.constructor.name, 'clone');
}
toString() {
throw new errors_1.MethodNotImplementedError(this.constructor.name, 'toString');
}
sizeInBytes() {
throw new errors_1.MethodNotImplementedError(this.constructor.name, 'sizeInBytes');
}
copyBytesInto(_buffer, _offset) {
throw new errors_1.MethodNotImplementedError(this.constructor.name, 'copyBytesInto');
}
}
exports.default = PDFObject;
//# sourceMappingURL=PDFObject.js.map