mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
accept new baseline
This commit is contained in:
+5
-6
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user