Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingbaoyu committed Feb 18, 2023
1 parent 258e539 commit b13f9da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/babel-types/src/ast-types/generated/index.ts
Expand Up @@ -725,6 +725,7 @@ export interface AssignmentPattern extends BaseNode {
| TSNonNullExpression;
right: Expression;
decorators?: Array<Decorator> | null;
optional?: boolean | null;
typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
}

Expand Down Expand Up @@ -911,6 +912,7 @@ export interface ObjectPattern extends BaseNode {
type: "ObjectPattern";
properties: Array<RestElement | ObjectProperty>;
decorators?: Array<Decorator> | null;
optional?: boolean | null;
typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
}

Expand Down

0 comments on commit b13f9da

Please sign in to comment.