@@ -580,7 +580,8 @@ export interface NewExpressionBuilder {
580
580
callee : K . ExpressionKind ,
581
581
comments ?: K . CommentKind [ ] | null ,
582
582
loc ?: K . SourceLocationKind | null ,
583
- typeArguments ?: null | K . TypeParameterInstantiationKind
583
+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
584
+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
584
585
}
585
586
) : namedTypes . NewExpression ;
586
587
}
@@ -597,7 +598,8 @@ export interface CallExpressionBuilder {
597
598
comments ?: K . CommentKind [ ] | null ,
598
599
loc ?: K . SourceLocationKind | null ,
599
600
optional ?: boolean ,
600
- typeArguments ?: null | K . TypeParameterInstantiationKind
601
+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
602
+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
601
603
}
602
604
) : namedTypes . CallExpression ;
603
605
}
@@ -1194,7 +1196,8 @@ export interface OptionalCallExpressionBuilder {
1194
1196
comments ?: K . CommentKind [ ] | null ,
1195
1197
loc ?: K . SourceLocationKind | null ,
1196
1198
optional ?: boolean ,
1197
- typeArguments ?: null | K . TypeParameterInstantiationKind
1199
+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
1200
+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
1198
1201
}
1199
1202
) : namedTypes . OptionalCallExpression ;
1200
1203
}
0 commit comments