accept new baseline

This commit is contained in:
Jesse Trinity
2020-05-29 12:50:23 -07:00
parent 665e434832
commit 23e00644f4
2 changed files with 8 additions and 9 deletions
+5 -6
View File
@@ -5531,9 +5531,9 @@ declare namespace ts {
renameLocation?: number;
commands?: CodeActionCommand[];
}
type RefactorTriggerReason = RefactorInvokedReason;
interface RefactorInvokedReason {
kind: "invoked";
enum RefactorTriggerReason {
Implicit = "implicit",
Invoked = "invoked"
}
interface TextInsertion {
newText: string;
@@ -6636,9 +6636,8 @@ declare namespace ts.server.protocol {
type GetApplicableRefactorsRequestArgs = FileLocationOrRangeRequestArgs & {
triggerReason?: RefactorTriggerReason;
};
type RefactorTriggerReason = RefactorInvokedReason;
interface RefactorInvokedReason {
kind: "invoked";
enum RefactorTriggerReason {
Invoked = "invoked"
}
/**
* Response is a list of available refactorings.
+3 -3
View File
@@ -5531,9 +5531,9 @@ declare namespace ts {
renameLocation?: number;
commands?: CodeActionCommand[];
}
type RefactorTriggerReason = RefactorInvokedReason;
interface RefactorInvokedReason {
kind: "invoked";
enum RefactorTriggerReason {
Implicit = "implicit",
Invoked = "invoked"
}
interface TextInsertion {
newText: string;