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

    The declaration provider interface defines the contract between extensions and the go to declaration feature.

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

    Methods