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

    Interface OutlineItem

    Outline item structure

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

    Properties

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