pdf-parse
    Preparing search index...

    Interface OutlineNode

    Node representing a single item in the PDF outline (bookmarks). This mirrors the structure returned by PDF.js' getOutline() API.

    interface OutlineNode {
        bold: boolean;
        color: Uint8ClampedArray;
        count?: number;
        dest: string | any[] | null;
        italic: boolean;
        items: any[];
        newWindow?: boolean;
        title: string;
        unsafeUrl?: string;
        url: string | null;
    }
    Index

    Properties

    bold: boolean
    color: Uint8ClampedArray
    count?: number
    dest: string | any[] | null
    italic: boolean
    items: any[]
    newWindow?: boolean
    title: string
    unsafeUrl?: string
    url: string | null