Interface TypeDefinitionProvider

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

interface TypeDefinitionProvider {
    provideTypeDefinition(model, position, token): ProviderResult<Definition>;
}

Methods