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