@@ -728,7 +728,7 @@ namespace ts.server.protocol {
728728 }
729729
730730 // All we need is the `success` and `message` fields of Response.
731- export interface ApplyCodeActionCommandResponse extends Response { }
731+ export interface ApplyCodeActionCommandResponse extends Response { }
732732
733733 export interface FileRangeRequestArgs extends FileRequestArgs {
734734 /**
@@ -1067,7 +1067,7 @@ namespace ts.server.protocol {
10671067 readonly arguments : JsxClosingTagRequestArgs ;
10681068 }
10691069
1070- export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs { }
1070+ export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs { }
10711071
10721072 export interface JsxClosingTagResponse extends Response {
10731073 readonly body : TextInsertion ;
@@ -2390,7 +2390,7 @@ namespace ts.server.protocol {
23902390 /**
23912391 * Human-readable description of the `source` from the CompletionEntry.
23922392 */
2393- sourceDisplay ?: SymbolDisplayPart [ ] ;
2393+ sourceDisplay ?: SymbolDisplayPart [ ] ;
23942394 }
23952395
23962396 /** @deprecated Prefer CompletionInfoResponse, which supports several top-level fields in addition to the array of entries. */
@@ -3415,7 +3415,7 @@ namespace ts.server.protocol {
34153415 /**
34163416 * Allows completions to be formatted with snippet text, indicated by `CompletionItem["isSnippet"]`.
34173417 */
3418- readonly includeCompletionsWithSnippetText ?: boolean ;
3418+ readonly includeCompletionsWithSnippetText ?: boolean ;
34193419 /**
34203420 * If enabled, the completion list will include completions with invalid identifier names.
34213421 * 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 {
34653465 readonly includeInlayParameterNameHintsWhenArgumentMatchesName ?: boolean ;
34663466 readonly includeInlayFunctionParameterTypeHints ?: boolean ,
34673467 readonly includeInlayVariableTypeHints ?: boolean ;
3468+ readonly includeInlayVariableTypeHintsWhenTypeMatchesName ?: boolean ;
34683469 readonly includeInlayPropertyDeclarationTypeHints ?: boolean ;
34693470 readonly includeInlayFunctionLikeReturnTypeHints ?: boolean ;
34703471 readonly includeInlayEnumMemberValueHints ?: boolean ;
0 commit comments