Interface DeclarationProvider

Language-specific service for handling go to declaration requests

interface DeclarationProvider {
    getDeclaration(document: LangiumDocument<AstNode>, params: DeclarationParams, cancelToken?: CancellationToken): MaybePromise<undefined | LocationLink[]>;
}

Methods