UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

11 lines (10 loc) 305 B
import PDFObject from './PDFObject'; declare class PDFNull extends PDFObject { static instance: PDFNull; constructor(enforcer: string); clone: () => this; toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default PDFNull;