Merge pull request #139 from remcohaszing/fix-type-issue

Fix a small type issue
This commit is contained in:
Remco Haszing 2021-11-23 14:51:45 +01:00 committed by GitHub
commit f42c5e97e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -140,7 +140,7 @@ function toRange(range: ls.Range): Range {
);
}
function toCompletionItemKind(kind: languages.CompletionItemKind): languages.CompletionItemKind {
function toCompletionItemKind(kind: ls.CompletionItemKind): languages.CompletionItemKind {
const mItemKind = languages.CompletionItemKind;
switch (kind) {