interface DocumentSymbol {
    children?: DocumentSymbol[];
    containerName?: string;
    detail: string;
    kind: SymbolKind;
    name: string;
    range: IRange;
    selectionRange: IRange;
    tags: readonly Deprecated[];
}

Properties

children?: DocumentSymbol[]
containerName?: string
detail: string
name: string
range: IRange
selectionRange: IRange
tags: readonly Deprecated[]