@@ -580,7 +580,8 @@ export interface NewExpressionBuilder {
580580 callee : K . ExpressionKind ,
581581 comments ?: K . CommentKind [ ] | null ,
582582 loc ?: K . SourceLocationKind | null ,
583- typeArguments ?: null | K . TypeParameterInstantiationKind
583+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
584+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
584585 }
585586 ) : namedTypes . NewExpression ;
586587}
@@ -597,7 +598,8 @@ export interface CallExpressionBuilder {
597598 comments ?: K . CommentKind [ ] | null ,
598599 loc ?: K . SourceLocationKind | null ,
599600 optional ?: boolean ,
600- typeArguments ?: null | K . TypeParameterInstantiationKind
601+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
602+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
601603 }
602604 ) : namedTypes . CallExpression ;
603605}
@@ -1194,7 +1196,8 @@ export interface OptionalCallExpressionBuilder {
11941196 comments ?: K . CommentKind [ ] | null ,
11951197 loc ?: K . SourceLocationKind | null ,
11961198 optional ?: boolean ,
1197- typeArguments ?: null | K . TypeParameterInstantiationKind
1199+ typeArguments ?: null | K . TypeParameterInstantiationKind ,
1200+ typeParameters ?: K . TypeParameterInstantiationKind | K . TSTypeParameterInstantiationKind | null
11981201 }
11991202 ) : namedTypes . OptionalCallExpression ;
12001203}
0 commit comments