Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Interface OutlineItem

    Outline item structure

    interface OutlineItem {
        cellIndex?: number;
        children?: OutlineItem[];
        id: string;
        label: string;
        level?: number;
        line?: number;
        type:
            | "code"
            | "heading"
            | "h1"
            | "h2"
            | "h3"
            | "h4"
            | "h5"
            | "h6"
            | "code-cell"
            | "markdown-cell";
    }
    Index

    Properties

    cellIndex?: number

    Cell index (for notebooks)

    children?: OutlineItem[]

    Nested children

    id: string

    Unique identifier

    label: string

    Display text

    level?: number

    Heading level (1-6 for headings)

    line?: number

    Line or node index in editor

    type:
        | "code"
        | "heading"
        | "h1"
        | "h2"
        | "h3"
        | "h4"
        | "h5"
        | "h6"
        | "code-cell"
        | "markdown-cell"

    Item type