mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 02:30:15 -06:00
reorder enum
This commit is contained in:
parent
28843c4197
commit
df3630b92c
@ -2411,9 +2411,9 @@ namespace ts {
|
||||
|
||||
/* @internal */
|
||||
export const enum StructureIsReused {
|
||||
Completely,
|
||||
SafeModules,
|
||||
Not
|
||||
Not = 0,
|
||||
SafeModules = 1 << 0,
|
||||
Completely = 1 << 1,
|
||||
}
|
||||
|
||||
export interface CustomTransformers {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user