pdfrx_web
    Preparing search index...

    Interface PdfOutlineState

    Outline state returned by usePdfOutline.

    interface PdfOutlineState {
        isLoading: boolean;
        outline: readonly PdfOutlineNode[] | null;
    }
    Index
    isLoading: boolean

    Whether the outline is being fetched.

    outline: readonly PdfOutlineNode[] | null

    The bookmark tree, [] when the document has none, null before it loads.