mirror of
https://github.com/nushell/nushell.git
synced 2025-07-31 18:21:17 +02:00
I did a naive fix; which is probably all right. But I want to spend some time to refactor a neighboring stuff. And it's yet not to be released I guess; I hope to add a few things beforehand. I've just opened it so you can verify that it must be addressed. close #15104, #14910, #15256
18 lines
445 B
Rust
18 lines
445 B
Rust
#![doc = include_str!("../README.md")]
|
|
|
|
mod table;
|
|
mod table_theme;
|
|
mod types;
|
|
mod unstructured_table;
|
|
mod util;
|
|
|
|
pub mod common;
|
|
|
|
pub use common::{StringResult, TableResult};
|
|
pub use nu_color_config::TextStyle;
|
|
pub use table::{NuRecords, NuRecordsValue, NuTable};
|
|
pub use table_theme::TableTheme;
|
|
pub use types::{CollapsedTable, ExpandedTable, JustTable, TableOpts, TableOutput};
|
|
pub use unstructured_table::UnstructuredTable;
|
|
pub use util::*;
|