Interface DocumentSymbolProvider

The document symbol provider interface defines the contract between extensions and the go to symbol-feature.

interface DocumentSymbolProvider {
    displayName?: string;
    provideDocumentSymbols(model, token): ProviderResult<DocumentSymbol[]>;
}

Properties

displayName?: string

Methods