Interface ImplementationProvider

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

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

Methods