@oxc-project/types 0.70.0 → 0.72.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 +2 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -742,6 +742,7 @@ export interface ImportExpression extends Span {
|
|
|
742
742
|
type: 'ImportExpression';
|
|
743
743
|
source: Expression;
|
|
744
744
|
options: Expression | null;
|
|
745
|
+
phase: ImportPhase | null;
|
|
745
746
|
}
|
|
746
747
|
|
|
747
748
|
export interface ImportDeclaration extends Span {
|
|
@@ -749,6 +750,7 @@ export interface ImportDeclaration extends Span {
|
|
|
749
750
|
specifiers: Array<ImportDeclarationSpecifier>;
|
|
750
751
|
source: StringLiteral;
|
|
751
752
|
attributes: Array<ImportAttribute>;
|
|
753
|
+
phase: ImportPhase | null;
|
|
752
754
|
importKind?: ImportOrExportKind;
|
|
753
755
|
}
|
|
754
756
|
|