UNPKG

@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.

6 lines (5 loc) 257 B
import type { IOutline } from "../publicApi"; /** * @description It returns a predicate on whether the provided outline node has an immediate previous sibling. */ export declare function hasImmediatePreviousSibling(outline: IOutline, i: number): boolean;