promkit_core/
lib.rs

1pub use crossterm;
2
3pub mod grapheme;
4pub mod pane;
5pub use pane::Pane;
6pub mod terminal;
7
8pub trait PaneFactory {
9    /// Creates pane with the given width.
10    fn create_pane(&self, width: u16, height: u16) -> Pane;
11}