Interface NodeKindProvider

This service consolidates the logic for gathering LSP kind information based on AST nodes or their descriptions.

interface NodeKindProvider {
    getCompletionItemKind(node: AstNode | AstNodeDescription): CompletionItemKind;
    getSymbolKind(node: AstNode | AstNodeDescription): SymbolKind;
}

Implemented by

Methods