File tree 1 file changed +3
-1
lines changed 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,8 @@ namespace ts {
435
435
TypeExcludesFlags = YieldContext | AwaitContext ,
436
436
}
437
437
438
+ export type ModifiersArray = NodeArray < Modifier > ;
439
+
438
440
export const enum ModifierFlags {
439
441
None = 0 ,
440
442
Export = 1 << 0 , // Declarations
@@ -480,7 +482,7 @@ namespace ts {
480
482
/* @internal */ modifierFlagsCache ?: ModifierFlags ;
481
483
/* @internal */ transformFlags ?: TransformFlags ;
482
484
decorators ?: NodeArray < Decorator > ; // Array of decorators (in document order)
483
- modifiers ?: NodeArray < Modifier > ; // Array of modifiers
485
+ modifiers ?: ModifiersArray ; // Array of modifiers
484
486
/* @internal */ id ?: number ; // Unique id (used to look up NodeLinks)
485
487
parent ?: Node ; // Parent node (initialized by binding)
486
488
/* @internal */ original ?: Node ; // The original node if this is an updated node.
You can’t perform that action at this time.
0 commit comments