Interface ImplementationProvider

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

interface ImplementationProvider {
    provideImplementation(model, position, token): ProviderResult<Definition>;
}

Methods