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

    The definition provider interface defines the contract between extensions and the go to definition and peek definition features.

    interface DefinitionProvider {
        provideDefinition(
            document: TextDocument,
            position: Position,
            token: undefined | CancellationToken,
        ): ProviderResult<Definition | LocationLink[]>;
    }
    Index

    Methods