@oxc-project/types 0.56.4 → 0.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxc-project/types",
3
- "version": "0.56.4",
3
+ "version": "0.57.0",
4
4
  "description": "Types for Oxc AST nodes",
5
5
  "keywords": [
6
6
  "AST",
package/types.d.ts CHANGED
@@ -848,7 +848,7 @@ export type JSXElementName = JSXIdentifier | JSXNamespacedName | JSXMemberExpres
848
848
  export interface JSXNamespacedName extends Span {
849
849
  type: 'JSXNamespacedName';
850
850
  namespace: JSXIdentifier;
851
- property: JSXIdentifier;
851
+ name: JSXIdentifier;
852
852
  }
853
853
 
854
854
  export interface JSXMemberExpression extends Span {
@@ -1281,11 +1281,11 @@ export type TSTypeQueryExprName = TSImportType | TSTypeName;
1281
1281
 
1282
1282
  export interface TSImportType extends Span {
1283
1283
  type: 'TSImportType';
1284
- isTypeOf: boolean;
1285
- parameter: TSType;
1284
+ argument: TSType;
1285
+ options: TSImportAttributes | null;
1286
1286
  qualifier: TSTypeName | null;
1287
- attributes: TSImportAttributes | null;
1288
- typeParameters: TSTypeParameterInstantiation | null;
1287
+ typeArguments: TSTypeParameterInstantiation | null;
1288
+ isTypeOf: boolean;
1289
1289
  }
1290
1290
 
1291
1291
  export interface TSImportAttributes extends Span {