/var/www/greso.tech/server/nsm/node_modules/pdf-lib/es/core
NameSizeModeActions
acroform/-0755rm
annotation/-0755rm
document/-0755rm
embedders/-0755rm
interactive/-0755rm
objects/-0755rm
operators/-0755rm
parser/-0755rm
streams/-0755rm
structures/-0755rm
syntax/-0755rm
writers/-0755rm
errors.d.ts31400644editdlrm
errors.d.ts.map20170644editdlrm
errors.js132130644editdlrm
errors.js.map58700644editdlrm
index.d.ts31870644editdlrm
index.d.ts.map28470644editdlrm
index.js31680644editdlrm
index.js.map27840644editdlrm
PDFContext.d.ts42170644editdlrm
PDFContext.d.ts.map38120644editdlrm
PDFContext.js81230644editdlrm
PDFContext.js.map66370644editdlrm
PDFObjectCopier.d.ts14680644editdlrm
PDFObjectCopier.d.ts.map5660644editdlrm
PDFObjectCopier.js54650644editdlrm
PDFObjectCopier.js.map41080644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/pdf-lib/es/core/PDFContext.d.ts (4217B)
import PDFHeader from "./document/PDFHeader"; import PDFArray from "./objects/PDFArray"; import PDFBool from "./objects/PDFBool"; import PDFDict from "./objects/PDFDict"; import PDFHexString from "./objects/PDFHexString"; import PDFName from "./objects/PDFName"; import PDFNull from "./objects/PDFNull"; import PDFNumber from "./objects/PDFNumber"; import PDFObject from "./objects/PDFObject"; import PDFRawStream from "./objects/PDFRawStream"; import PDFRef from "./objects/PDFRef"; import PDFStream from "./objects/PDFStream"; import PDFString from "./objects/PDFString"; import PDFOperator from "./operators/PDFOperator"; import PDFContentStream from "./structures/PDFContentStream"; import { SimpleRNG } from "../utils/rng"; declare type LookupKey = PDFRef | PDFObject | undefined; interface LiteralObject { [name: string]: Literal | PDFObject; } interface LiteralArray { [index: number]: Literal | PDFObject; } declare type Literal = LiteralObject | LiteralArray | string | number | boolean | null | undefined; declare class PDFContext { static create: () => PDFContext; largestObjectNumber: number; header: PDFHeader; trailerInfo: { Root?: PDFObject; Encrypt?: PDFObject; Info?: PDFObject; ID?: PDFObject; }; rng: SimpleRNG; private readonly indirectObjects; private pushGraphicsStateContentStreamRef?; private popGraphicsStateContentStreamRef?; private constructor(); assign(ref: PDFRef, object: PDFObject): void; nextRef(): PDFRef; register(object: PDFObject): PDFRef; delete(ref: PDFRef): boolean; lookupMaybe(ref: LookupKey, type: typeof PDFArray): PDFArray | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFBool): PDFBool | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFDict): PDFDict | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFHexString): PDFHexString | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFName): PDFName | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFNull): typeof PDFNull | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFNumber): PDFNumber | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFStream): PDFStream | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFRef): PDFRef | undefined; lookupMaybe(ref: LookupKey, type: typeof PDFString): PDFString | undefined; lookupMaybe(ref: LookupKey, type1: typeof PDFString, type2: typeof PDFHexString): PDFString | PDFHexString | undefined; lookup(ref: LookupKey): PDFObject | undefined; lookup(ref: LookupKey, type: typeof PDFArray): PDFArray; lookup(ref: LookupKey, type: typeof PDFBool): PDFBool; lookup(ref: LookupKey, type: typeof PDFDict): PDFDict; lookup(ref: LookupKey, type: typeof PDFHexString): PDFHexString; lookup(ref: LookupKey, type: typeof PDFName): PDFName; lookup(ref: LookupKey, type: typeof PDFNull): typeof PDFNull; lookup(ref: LookupKey, type: typeof PDFNumber): PDFNumber; lookup(ref: LookupKey, type: typeof PDFStream): PDFStream; lookup(ref: LookupKey, type: typeof PDFRef): PDFRef; lookup(ref: LookupKey, type: typeof PDFString): PDFString; lookup(ref: LookupKey, type1: typeof PDFString, type2: typeof PDFHexString): PDFString | PDFHexString; getObjectRef(pdfObject: PDFObject): PDFRef | undefined; enumerateIndirectObjects(): [PDFRef, PDFObject][]; obj(literal: null | undefined): typeof PDFNull; obj(literal: string): PDFName; obj(literal: number): PDFNumber; obj(literal: boolean): PDFBool; obj(literal: LiteralObject): PDFDict; obj(literal: LiteralArray): PDFArray; stream(contents: string | Uint8Array, dict?: LiteralObject): PDFRawStream; flateStream(contents: string | Uint8Array, dict?: LiteralObject): PDFRawStream; contentStream(operators: PDFOperator[], dict?: LiteralObject): PDFContentStream; formXObject(operators: PDFOperator[], dict?: LiteralObject): PDFContentStream; getPushGraphicsStateContentStream(): PDFRef; getPopGraphicsStateContentStream(): PDFRef; addRandomSuffix(prefix: string, suffixLength?: number): string; } export default PDFContext; //# sourceMappingURL=PDFContext.d.ts.map