@oxc-project/types 0.56.5 → 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.
- package/package.json +1 -1
- package/types.d.ts +5 -5
package/package.json
CHANGED
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
|
-
|
|
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
|
-
|
|
1285
|
-
|
|
1284
|
+
argument: TSType;
|
|
1285
|
+
options: TSImportAttributes | null;
|
|
1286
1286
|
qualifier: TSTypeName | null;
|
|
1287
|
-
|
|
1288
|
-
|
|
1287
|
+
typeArguments: TSTypeParameterInstantiation | null;
|
|
1288
|
+
isTypeOf: boolean;
|
|
1289
1289
|
}
|
|
1290
1290
|
|
|
1291
1291
|
export interface TSImportAttributes extends Span {
|