Skip to content

Commit 2562970

Browse files
committed
ghost: type annotate items
1 parent 336aeb8 commit 2562970

File tree

1 file changed

+1
-1
lines changed
  • src/extension/completions-core/vscode-node/extension/src/ghostText

1 file changed

+1
-1
lines changed

src/extension/completions-core/vscode-node/extension/src/ghostText/ghostText.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class GhostTextProvider {
7676
return;
7777
}
7878

79-
const items = rawCompletions.map(completion => {
79+
const items: GhostTextCompletionItem[] = rawCompletions.map(completion => {
8080
const { start, end } = completion.range;
8181
const newRange = new Range(start.line, start.character, end.line, end.character);
8282
return {

0 commit comments

Comments
 (0)