1//! # typst-shim 2 3mod syntax_only; 4pub use syntax_only::*; 5 6pub use cfg_if::cfg_if; 7 8cfg_if! { 9 if #[cfg(feature = "nightly")] { 10 mod nightly; 11 pub use nightly::*; 12 } else { 13 mod stable; 14 pub use stable::*; 15 } 16}