nushell/crates/nu-table/src/lib.rs

10 lines
194 B
Rust
Raw Normal View History

mod table;
2022-05-16 15:35:57 +00:00
mod table_theme;
mod textstyle;
mod wrap;
2022-05-16 15:35:57 +00:00
pub use table::{draw_table, Table};
pub use table_theme::TableTheme;
pub use textstyle::{StyledString, TextStyle};
pub use wrap::Alignment;