summaryrefslogtreecommitdiffstats
path: root/vendor/prodash/src/render/mod.rs
blob: f1780df7d81d1379007a594e003e55f23c2e1af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "render-tui")]
///
pub mod tui;
#[cfg(feature = "render-tui")]
pub use self::tui::render as tui;

#[cfg(feature = "render-line")]
///
pub mod line;
#[cfg(feature = "render-line")]
pub use self::line::render as line;