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) 236 B
import type { IOutline } from "../publicApi"; /** * @description It returns the number of descendant outline nodes of the provided outline node. */ export declare function getNumberOfDescendants(outline: IOutline, i: number): number;