Interface DeclarationProvider

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

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

Methods