@oxc-project/types
Advanced tools
Comparing version 0.39.0 to 0.40.0
{ | ||
"name": "@oxc-project/types", | ||
"version": "0.39.0", | ||
"version": "0.40.0", | ||
"description": "Types for Oxc AST nodes", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -7,3 +7,3 @@ // Auto-generated code, DO NOT EDIT DIRECTLY! | ||
value: boolean; | ||
raw: string; | ||
raw: string | null; | ||
} | ||
@@ -14,3 +14,3 @@ | ||
value: null; | ||
raw: 'null'; | ||
raw: 'null' | null; | ||
} | ||
@@ -21,3 +21,3 @@ | ||
value: number; | ||
raw: string; | ||
raw: string | null; | ||
} | ||
@@ -33,3 +33,3 @@ | ||
type: 'Literal'; | ||
raw: string; | ||
raw: string | null; | ||
value: null; | ||
@@ -41,3 +41,3 @@ bigint: string; | ||
type: 'Literal'; | ||
raw: string; | ||
raw: string | null; | ||
value: {} | null; | ||
@@ -913,2 +913,3 @@ regex: { pattern: string; flags: string }; | ||
arguments: Array<Expression>; | ||
phase: ImportPhase | null; | ||
} | ||
@@ -920,2 +921,3 @@ | ||
source: StringLiteral; | ||
phase: ImportPhase | null; | ||
withClause: WithClause | null; | ||
@@ -925,2 +927,4 @@ importKind: ImportOrExportKind; | ||
export type ImportPhase = 'source' | 'defer'; | ||
export type ImportDeclarationSpecifier = ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier; | ||
@@ -927,0 +931,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46664
1691