diff --git a/crates/oxc_ast/src/ast/mod.rs b/crates/oxc_ast/src/ast/mod.rs index 54c88b0b6258a1..c01ea74c1634b6 100644 --- a/crates/oxc_ast/src/ast/mod.rs +++ b/crates/oxc_ast/src/ast/mod.rs @@ -183,3 +183,12 @@ mod ts; use macros::inherit_variants; pub use self::{js::*, jsx::*, literal::*, ts::*}; + +// Re-export AST types from other crates +pub use oxc_span::{Atom, Language, LanguageVariant, ModuleKind, SourceType, Span}; +pub use oxc_syntax::{ + number::{BigintBase, NumberBase}, + operator::{ + AssignmentOperator, BinaryOperator, LogicalOperator, UnaryOperator, UpdateOperator, + }, +};