mirror of
https://github.com/nushell/nushell
synced 2025-02-19 07:28:32 +00:00
Reverts nushell/nushell#9796 This is just draft since we're seeing some issues with the latest fixes to table drawing that just landed with #9796. We're hoping to get these fixed, but if we're not able to fix them before the next release, we'll need to revert (hence this PR, just in case we need it).
15 lines
464 B
Rust
15 lines
464 B
Rust
mod table;
|
|
mod table_theme;
|
|
mod types;
|
|
mod unstructured_table;
|
|
mod util;
|
|
|
|
pub use nu_color_config::TextStyle;
|
|
pub use table::{Alignments, Cell, NuTable, TableConfig};
|
|
pub use table_theme::TableTheme;
|
|
pub use types::{
|
|
clean_charset, value_to_clean_styled_string, value_to_styled_string, BuildConfig,
|
|
CollapsedTable, ExpandedTable, JustTable, NuText, StringResult, TableOutput, TableResult,
|
|
};
|
|
pub use unstructured_table::UnstructuredTable;
|
|
pub use util::*;
|