Trevixal API
    Preparing search index...

    Interface OutlineEntry

    One row in the outline: a heading, or a notable non-heading block.

    interface OutlineEntry {
        depth: number;
        icon?: IconName;
        label: string;
        level: number;
        path: Path;
        type: string;
    }
    Index
    depth: number

    Indentation depth in the rendered tree, from 0.

    icon?: IconName
    label: string

    Row label: heading text, or a description of the block.

    level: number

    Heading level when type is a heading, otherwise 0.

    path: Path
    type: string

    Node type name (heading, codeBlock, table, …).