14 lines
598 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
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;
};