UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

12 lines (11 loc) 424 B
import { PDFDictionary } from '../pdf-objects'; declare class PDFTrailer { static from: (offset: number, dictionary?: PDFDictionary | undefined) => PDFTrailer; offset: number; dictionary: PDFDictionary | void; constructor(offset: number, dictionary?: PDFDictionary); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default PDFTrailer;