UNPKG

node-signpdf

Version:
18 lines (14 loc) 437 B
import PDFAbstractReference from './pdfkit/abstract_reference'; class PDFKitReferenceMock extends PDFAbstractReference { constructor(index, additionalData = undefined) { super(); this.index = index; if (typeof additionalData !== 'undefined') { Object.assign(this, additionalData); } } toString() { return `${this.index} 0 R`; } } export default PDFKitReferenceMock;