mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-19 06:21:04 +00:00
Merge pull request #139 from remcohaszing/fix-type-issue
Fix a small type issue
This commit is contained in:
commit
f42c5e97e0
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue