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

    Interface ReferenceProvider

    The reference provider interface defines the contract between extensions and the find references-feature.

    interface ReferenceProvider {
        provideReferences(
            document: TextDocument,
            position: Position,
            context: ReferenceContext,
            token: CancellationToken,
        ): ProviderResult<Location[]>;
    }
    Index

    Methods