Skip to content

Commit

Permalink
fix(ast-spec): a JSXEmptyExpression is not a possible JSXExpression (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
MageJohn committed Jan 30, 2023
1 parent 3171124 commit 4b27777
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/ast-spec/src/unions/JSXExpression.ts
@@ -1,8 +1,4 @@
import type { JSXEmptyExpression } from '../jsx/JSXEmptyExpression/spec';
import type { JSXExpressionContainer } from '../jsx/JSXExpressionContainer/spec';
import type { JSXSpreadChild } from '../jsx/JSXSpreadChild/spec';

export type JSXExpression =
| JSXEmptyExpression
| JSXExpressionContainer
| JSXSpreadChild;
export type JSXExpression = JSXExpressionContainer | JSXSpreadChild;

0 comments on commit 4b27777

Please sign in to comment.