mirror of
https://github.com/typst/typst
synced 2025-05-13 12:36:23 +08:00
16 lines
280 B
Rust
16 lines
280 B
Rust
//! Interaction between document parts.
|
|
|
|
mod document;
|
|
mod heading;
|
|
mod link;
|
|
mod numbering;
|
|
mod outline;
|
|
mod reference;
|
|
|
|
pub use self::document::*;
|
|
pub use self::heading::*;
|
|
pub use self::link::*;
|
|
pub use self::numbering::*;
|
|
pub use self::outline::*;
|
|
pub use self::reference::*;
|