docx-rs/docx-wasm/src/lib.rs

27 lines
410 B
Rust
Raw Normal View History

mod adaptors;
mod comment;
mod delete;
mod docx;
mod insert;
mod level;
mod numbering;
mod paragraph;
mod run;
mod table;
mod table_cell;
mod table_row;
pub use adaptors::*;
pub use comment::*;
pub use delete::*;
pub use docx::*;
pub use docx_core;
pub use insert::*;
pub use level::*;
pub use numbering::*;
pub use paragraph::*;
pub use run::*;
pub use table::*;
pub use table_cell::*;
pub use table_row::*;