2023-03-01 18:27:19 +01:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
2023-04-04 22:02:32 +00:00
|
|
|
value: true,
|
2023-03-01 18:27:19 +01:00
|
|
|
});
|
|
|
|
|
exports.default = void 0;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
PDFAbstractReference by Devon Govett used below.
|
|
|
|
|
The class is part of pdfkit. See https://github.com/foliojs/pdfkit
|
|
|
|
|
LICENSE: MIT. Included in this folder.
|
|
|
|
|
Modifications may have been applied for the purposes of node-signpdf.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
PDFAbstractReference - abstract class for PDF reference
|
|
|
|
|
*/
|
|
|
|
|
class PDFAbstractReference {
|
|
|
|
|
toString() {
|
2023-04-04 22:02:32 +00:00
|
|
|
throw new Error("Must be implemented by subclasses");
|
2023-03-01 18:27:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = PDFAbstractReference;
|
2023-04-04 22:02:32 +00:00
|
|
|
exports.default = _default;
|