mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 12:15:34 -06:00
accept new baseline
This commit is contained in:
parent
86122c412f
commit
d37f4c33cc
@ -5531,10 +5531,7 @@ declare namespace ts {
|
||||
renameLocation?: number;
|
||||
commands?: CodeActionCommand[];
|
||||
}
|
||||
enum RefactorTriggerReason {
|
||||
Implicit = "implicit",
|
||||
Invoked = "invoked"
|
||||
}
|
||||
type RefactorTriggerReason = "implicit" | "invoked";
|
||||
interface TextInsertion {
|
||||
newText: string;
|
||||
/** The position in newText the caret should point to after the insertion. */
|
||||
@ -6636,9 +6633,7 @@ declare namespace ts.server.protocol {
|
||||
type GetApplicableRefactorsRequestArgs = FileLocationOrRangeRequestArgs & {
|
||||
triggerReason?: RefactorTriggerReason;
|
||||
};
|
||||
enum RefactorTriggerReason {
|
||||
Invoked = "invoked"
|
||||
}
|
||||
type RefactorTriggerReason = "implicit" | "invoked";
|
||||
/**
|
||||
* Response is a list of available refactorings.
|
||||
* Each refactoring exposes one or more "Actions"; a user selects one action to invoke a refactoring
|
||||
|
||||
@ -5531,10 +5531,7 @@ declare namespace ts {
|
||||
renameLocation?: number;
|
||||
commands?: CodeActionCommand[];
|
||||
}
|
||||
enum RefactorTriggerReason {
|
||||
Implicit = "implicit",
|
||||
Invoked = "invoked"
|
||||
}
|
||||
type RefactorTriggerReason = "implicit" | "invoked";
|
||||
interface TextInsertion {
|
||||
newText: string;
|
||||
/** The position in newText the caret should point to after the insertion. */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user