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

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

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

    Methods