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 {
7
7
PartialResultParams ,
8
8
} from './lsp'
9
9
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
+ }
11
19
12
- export type InlineCompletionWithReferencesParams = InlineCompletionParams & PartialResultParams
20
+ export type InlineCompletionWithReferencesParams = InlineCompletionParams & PartialResultParams & DocumentChangeParams
13
21
14
22
export const inlineCompletionWithReferencesRequestType = new ProtocolRequestType <
15
23
InlineCompletionWithReferencesParams ,
You can’t perform that action at this time.
0 commit comments