pdfrx_web
    Preparing search index...

    Interface MappedOutlineNode

    Outline node whose destination refers to the final arranged page index.

    interface MappedOutlineNode {
        children: readonly MappedOutlineNode[];
        dest:
            | {
                command: string;
                pageIndex: number;
                params: readonly (number | null)[];
            }
            | null;
        title: string;
    }
    Index
    children: readonly MappedOutlineNode[]

    Recursively mapped child bookmarks.

    dest:
        | {
            command: string;
            pageIndex: number;
            params: readonly (number | null)[];
        }
        | null

    Resolved target, or null for a structural node without a destination.

    title: string

    Visible bookmark label.