private kustoKindToLsKind()

in package/src/languageServiceManager/kustoLanguageService.ts [2127:2130]


    private kustoKindToLsKind(kustoKind: k.OptionKind): ls.CompletionItemKind {
        let res = this._kustoKindtolsKind[kustoKind];
        return res ? res : ls.CompletionItemKind.Variable;
    }