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.

7 lines (6 loc) 277 B
import { IOutline } from "../publicApi"; /** * @description It returns the index of the immediate next sibling for the specified outline node. * It throws if it does not exist. */ export declare function getIndexOfImmediateNextSibling(outline: IOutline, i: number): number;