@oxc-project/types 0.53.0 → 0.54.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 +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxc-project/types",
3
- "version": "0.53.0",
3
+ "version": "0.54.0",
4
4
  "description": "Types for Oxc AST nodes",
5
5
  "keywords": [
6
6
  "AST",
package/types.d.ts CHANGED
@@ -48,6 +48,7 @@ export type Expression =
48
48
  | TSTypeAssertion
49
49
  | TSNonNullExpression
50
50
  | TSInstantiationExpression
51
+ | V8IntrinsicExpression
51
52
  | MemberExpression;
52
53
 
53
54
  export interface IdentifierName extends Span {
@@ -759,6 +760,12 @@ export type ExportDefaultDeclarationKind = Function | Class | TSInterfaceDeclara
759
760
 
760
761
  export type ModuleExportName = IdentifierName | IdentifierReference | StringLiteral;
761
762
 
763
+ export interface V8IntrinsicExpression extends Span {
764
+ type: 'V8IntrinsicExpression';
765
+ name: IdentifierName;
766
+ arguments: Array<Argument>;
767
+ }
768
+
762
769
  export interface BooleanLiteral extends Span {
763
770
  type: 'Literal';
764
771
  value: boolean;