@@ -728,7 +728,7 @@ namespace ts.server.protocol {
728
728
}
729
729
730
730
// All we need is the `success` and `message` fields of Response.
731
- export interface ApplyCodeActionCommandResponse extends Response { }
731
+ export interface ApplyCodeActionCommandResponse extends Response { }
732
732
733
733
export interface FileRangeRequestArgs extends FileRequestArgs {
734
734
/**
@@ -1067,7 +1067,7 @@ namespace ts.server.protocol {
1067
1067
readonly arguments : JsxClosingTagRequestArgs ;
1068
1068
}
1069
1069
1070
- export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs { }
1070
+ export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs { }
1071
1071
1072
1072
export interface JsxClosingTagResponse extends Response {
1073
1073
readonly body : TextInsertion ;
@@ -2390,7 +2390,7 @@ namespace ts.server.protocol {
2390
2390
/**
2391
2391
* Human-readable description of the `source` from the CompletionEntry.
2392
2392
*/
2393
- sourceDisplay ?: SymbolDisplayPart [ ] ;
2393
+ sourceDisplay ?: SymbolDisplayPart [ ] ;
2394
2394
}
2395
2395
2396
2396
/** @deprecated Prefer CompletionInfoResponse, which supports several top-level fields in addition to the array of entries. */
@@ -3415,7 +3415,7 @@ namespace ts.server.protocol {
3415
3415
/**
3416
3416
* Allows completions to be formatted with snippet text, indicated by `CompletionItem["isSnippet"]`.
3417
3417
*/
3418
- readonly includeCompletionsWithSnippetText ?: boolean ;
3418
+ readonly includeCompletionsWithSnippetText ?: boolean ;
3419
3419
/**
3420
3420
* If enabled, the completion list will include completions with invalid identifier names.
3421
3421
* For those entries, The `insertText` and `replacementSpan` properties will be set to change from `.x` property access to `["x"]`.
@@ -3465,6 +3465,7 @@ namespace ts.server.protocol {
3465
3465
readonly includeInlayParameterNameHintsWhenArgumentMatchesName ?: boolean ;
3466
3466
readonly includeInlayFunctionParameterTypeHints ?: boolean ,
3467
3467
readonly includeInlayVariableTypeHints ?: boolean ;
3468
+ readonly includeInlayVariableTypeHintsWhenTypeMatchesName ?: boolean ;
3468
3469
readonly includeInlayPropertyDeclarationTypeHints ?: boolean ;
3469
3470
readonly includeInlayFunctionLikeReturnTypeHints ?: boolean ;
3470
3471
readonly includeInlayEnumMemberValueHints ?: boolean ;
0 commit comments