@@ -879,6 +879,7 @@ export interface ClassPropertyBuilder {
879879 access ?: "public" | "private" | "protected" | undefined ;
880880 comments ?: K . CommentKind [ ] | null ;
881881 computed ?: boolean ;
882+ decorators ?: K . DecoratorKind [ ] | null ;
882883 key : K . LiteralKind | K . IdentifierKind | K . ExpressionKind ;
883884 loc ?: K . SourceLocationKind | null ;
884885 static ?: boolean ;
@@ -923,6 +924,7 @@ export interface ClassDeclarationBuilder {
923924 params : {
924925 body : K . ClassBodyKind ;
925926 comments ?: K . CommentKind [ ] | null ;
927+ decorators ?: K . DecoratorKind [ ] | null ;
926928 id : K . IdentifierKind | null ;
927929 implements ?: K . ClassImplementsKind [ ] | K . TSExpressionWithTypeArgumentsKind [ ] ;
928930 loc ?: K . SourceLocationKind | null ;
@@ -1271,6 +1273,7 @@ export interface ClassPrivatePropertyBuilder {
12711273 access ?: "public" | "private" | "protected" | undefined ;
12721274 comments ?: K . CommentKind [ ] | null ;
12731275 computed ?: boolean ;
1276+ decorators ?: K . DecoratorKind [ ] | null ;
12741277 key : K . PrivateNameKind ;
12751278 loc ?: K . SourceLocationKind | null ;
12761279 static ?: boolean ;
@@ -2126,6 +2129,7 @@ export interface PropertyDefinitionBuilder {
21262129 access ?: "public" | "private" | "protected" | undefined ;
21272130 comments ?: K . CommentKind [ ] | null ;
21282131 computed ?: boolean ;
2132+ decorators ?: K . DecoratorKind [ ] | null ;
21292133 key : K . LiteralKind | K . IdentifierKind | K . ExpressionKind ;
21302134 loc ?: K . SourceLocationKind | null ;
21312135 static ?: boolean ;
0 commit comments