File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -4526,6 +4526,8 @@ declare namespace ts {
4526
4526
commands ?: CodeActionCommand [ ] ;
4527
4527
}
4528
4528
interface CodeFixAction extends CodeAction {
4529
+ /** Short name to identify the fix, for use by telemetry. */
4530
+ fixName : string ;
4529
4531
/**
4530
4532
* If present, one may call 'getCombinedCodeFix' with this fixId.
4531
4533
* 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 {
6609
6611
commands ?: ReadonlyArray < { } > ;
6610
6612
}
6611
6613
interface CodeFixAction extends CodeAction {
6614
+ /** Short name to identify the fix, for use by telemetry. */
6615
+ fixName : string ;
6612
6616
/**
6613
6617
* If present, one may call 'getCombinedCodeFix' with this fixId.
6614
6618
* 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 {
8336
8340
private applyCodeActionCommand ;
8337
8341
private getStartAndEndPosition ;
8338
8342
private mapCodeAction ;
8343
+ private mapCodeFixAction ;
8339
8344
private mapTextChangesToCodeEdits ;
8340
8345
private mapTextChangesToCodeEditsUsingScriptinfo ;
8341
8346
private convertTextChangeToCodeEdit ;
You can’t perform that action at this time.
0 commit comments