Interface TypeDefinitionProvider

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

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

Methods