table refactor for readability (#5555)

This commit is contained in:
Darren Schroeder
2022-05-16 10:35:57 -05:00
committed by GitHub
parent 2b96c93b8d
commit d1e7884d19
7 changed files with 619 additions and 609 deletions

View File

@ -1,5 +1,9 @@
mod table;
mod table_theme;
mod textstyle;
mod wrap;
pub use table::{draw_table, StyledString, Table, TextStyle, Theme};
pub use table::{draw_table, Table};
pub use table_theme::TableTheme;
pub use textstyle::{StyledString, TextStyle};
pub use wrap::Alignment;