@lillallol/outline-pdf-data-structure
Version:
Create a pdf outline data structure from a high level string representation of pdf outline. This data structure can be used to create a real pdf outline.
14 lines (13 loc) • 598 B
TypeScript
export declare const errorMessages: {
nodeIsCollapsedWithoutChildren: (line: string) => string;
emptyOutline: string;
wrongDepthDisplacement: (oldLine: string, newLine: string) => string;
zeroPageInOutlineIsNotAllowed: (line: string) => string;
pageNumberInOutlineExceedsMaximum: (line: string, max: number) => string;
depthOfOutlineHasToStartWithZero: string;
wrongPatternInLine: (line: string) => string;
invalidDisplacementOfPage: (oldLine: string, newLine: string) => string;
};
export declare const internalErrorMessages: {
internalLibraryError: string;
};