Theia API Documentation v1.65.0
    Preparing search index...

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

    interface DocumentSymbolProvider {
        provideDocumentSymbols(
            document: TextDocument,
            token: CancellationToken,
        ): ProviderResult<DocumentSymbol[] | SymbolInformation[]>;
    }
    Index

    Methods