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