File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4526,6 +4526,8 @@ declare namespace ts {
45264526 commands ?: CodeActionCommand [ ] ;
45274527 }
45284528 interface CodeFixAction extends CodeAction {
4529+ /** Short name to identify the fix, for use by telemetry. */
4530+ fixName : string ;
45294531 /**
45304532 * If present, one may call 'getCombinedCodeFix' with this fixId.
45314533 * This may be omitted to indicate that the code fix can't be applied in a group.
@@ -6609,6 +6611,8 @@ declare namespace ts.server.protocol {
66096611 commands ?: ReadonlyArray < { } > ;
66106612 }
66116613 interface CodeFixAction extends CodeAction {
6614+ /** Short name to identify the fix, for use by telemetry. */
6615+ fixName : string ;
66126616 /**
66136617 * If present, one may call 'getCombinedCodeFix' with this fixId.
66146618 * This may be omitted to indicate that the code fix can't be applied in a group.
@@ -8336,6 +8340,7 @@ declare namespace ts.server {
83368340 private applyCodeActionCommand ;
83378341 private getStartAndEndPosition ;
83388342 private mapCodeAction ;
8343+ private mapCodeFixAction ;
83398344 private mapTextChangesToCodeEdits ;
83408345 private mapTextChangesToCodeEditsUsingScriptinfo ;
83418346 private convertTextChangeToCodeEdit ;
You can’t perform that action at this time.
0 commit comments