Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed May 24, 2024
1 parent bfa2446 commit c4a4fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denops/@ddc-sources/lsp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class Source extends BaseSource<Params> {
const completionList = Array.isArray(result)
? { items: result, isIncomplete: false }
: result;
const items = completionList.items.map((lspItem) =>
const items = completionList.items.map((lspItem: Item) =>
completionItem.toDdcItem(
lspItem,
completionList.itemDefaults,
Expand Down

0 comments on commit c4a4fc2

Please sign in to comment.