File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,17 @@ import {
77 PartialResultParams ,
88} from './lsp'
99
10- import { ProtocolNotificationType , ProtocolRequestType } from 'vscode-languageserver-protocol'
10+ import {
11+ DidChangeTextDocumentParams ,
12+ ProtocolNotificationType ,
13+ ProtocolRequestType ,
14+ } from 'vscode-languageserver-protocol'
15+
16+ interface DocumentChangeParams {
17+ documentChangeParams ?: DidChangeTextDocumentParams
18+ }
1119
12- export type InlineCompletionWithReferencesParams = InlineCompletionParams & PartialResultParams
20+ export type InlineCompletionWithReferencesParams = InlineCompletionParams & PartialResultParams & DocumentChangeParams
1321
1422export const inlineCompletionWithReferencesRequestType = new ProtocolRequestType <
1523 InlineCompletionWithReferencesParams ,
You can’t perform that action at this time.
0 commit comments