Interface BaseSymbolInformation

A base for all symbol information.

interface BaseSymbolInformation {
    containerName?: string;
    kind: SymbolKind;
    name: string;
    tags?: 1[];
}

Hierarchy (View Summary)

Properties

containerName?: string

The name of the symbol containing this symbol. This information is for user interface purposes (e.g. to render a qualifier in the user interface if necessary). It can't be used to re-infer a hierarchy for the document symbols.

The kind of this symbol.

name: string

The name of this symbol.

tags?: 1[]

Tags for this symbol.

3.16.0