/var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/es/core/objects
NameSizeModeActions
PDFArray.d.ts31950644editdlrm
PDFBool.d.ts4450644editdlrm
PDFDict.d.ts36060644editdlrm
PDFHexString.d.ts5790644editdlrm
PDFInvalidObject.d.ts4360644editdlrm
PDFName.d.ts15290644editdlrm
PDFNull.d.ts3440644editdlrm
PDFNumber.d.ts5460644editdlrm
PDFObject.d.ts3040644editdlrm
PDFRawStream.d.ts5520644editdlrm
PDFRef.d.ts4920644editdlrm
PDFStream.d.ts5770644editdlrm
PDFString.d.ts5530644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/es/core/objects/PDFDict.d.ts (3606B)
import PDFArray from "./PDFArray"; import PDFBool from "./PDFBool"; import PDFHexString from "./PDFHexString"; import PDFName from "./PDFName"; import PDFNull from "./PDFNull"; import PDFNumber from "./PDFNumber"; import PDFObject from "./PDFObject"; import PDFRef from "./PDFRef"; import PDFStream from "./PDFStream"; import PDFString from "./PDFString"; import PDFContext from "../PDFContext"; export declare type DictMap = Map; declare class PDFDict extends PDFObject { static withContext: (context: PDFContext) => PDFDict; static fromMapWithContext: (map: DictMap, context: PDFContext) => PDFDict; readonly context: PDFContext; private readonly dict; protected constructor(map: DictMap, context: PDFContext); keys(): PDFName[]; values(): PDFObject[]; entries(): [PDFName, PDFObject][]; set(key: PDFName, value: PDFObject): void; get(key: PDFName, preservePDFNull?: boolean): PDFObject | undefined; has(key: PDFName): boolean; lookupMaybe(key: PDFName, type: typeof PDFArray): PDFArray | undefined; lookupMaybe(key: PDFName, type: typeof PDFBool): PDFBool | undefined; lookupMaybe(key: PDFName, type: typeof PDFDict): PDFDict | undefined; lookupMaybe(key: PDFName, type: typeof PDFHexString): PDFHexString | undefined; lookupMaybe(key: PDFName, type: typeof PDFName): PDFName | undefined; lookupMaybe(key: PDFName, type: typeof PDFNull): typeof PDFNull | undefined; lookupMaybe(key: PDFName, type: typeof PDFNumber): PDFNumber | undefined; lookupMaybe(key: PDFName, type: typeof PDFStream): PDFStream | undefined; lookupMaybe(key: PDFName, type: typeof PDFRef): PDFRef | undefined; lookupMaybe(key: PDFName, type: typeof PDFString): PDFString | undefined; lookupMaybe(ref: PDFName, type1: typeof PDFString, type2: typeof PDFHexString): PDFString | PDFHexString | undefined; lookupMaybe(ref: PDFName, type1: typeof PDFDict, type2: typeof PDFStream): PDFDict | PDFStream | undefined; lookupMaybe(ref: PDFName, type1: typeof PDFString, type2: typeof PDFHexString, type3: typeof PDFArray): PDFString | PDFHexString | PDFArray | undefined; lookup(key: PDFName): PDFObject | undefined; lookup(key: PDFName, type: typeof PDFArray): PDFArray; lookup(key: PDFName, type: typeof PDFBool): PDFBool; lookup(key: PDFName, type: typeof PDFDict): PDFDict; lookup(key: PDFName, type: typeof PDFHexString): PDFHexString; lookup(key: PDFName, type: typeof PDFName): PDFName; lookup(key: PDFName, type: typeof PDFNull): typeof PDFNull; lookup(key: PDFName, type: typeof PDFNumber): PDFNumber; lookup(key: PDFName, type: typeof PDFStream): PDFStream; lookup(key: PDFName, type: typeof PDFRef): PDFRef; lookup(key: PDFName, type: typeof PDFString): PDFString; lookup(ref: PDFName, type1: typeof PDFString, type2: typeof PDFHexString): PDFString | PDFHexString; lookup(ref: PDFName, type1: typeof PDFDict, type2: typeof PDFStream): PDFDict | PDFStream; lookup(ref: PDFName, type1: typeof PDFString, type2: typeof PDFHexString, type3: typeof PDFArray): PDFString | PDFHexString | PDFArray; delete(key: PDFName): boolean; asMap(): Map; /** Generate a random key that doesn't exist in current key set */ uniqueKey(tag?: string): PDFName; clone(context?: PDFContext): PDFDict; toString(): string; sizeInBytes(): number; copyBytesInto(buffer: Uint8Array, offset: number): number; } export default PDFDict; //# sourceMappingURL=PDFDict.d.ts.map