Skip to content

Commit 32c5713

Browse files
committed
Update tsserverlibrary.d.ts after missed baseline
1 parent a0b08f3 commit 32c5713

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)