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

    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