frozen_term/
lib.rs

1#![doc = include_str!("../Readme.md")]
2
3mod scrollbar;
4mod terminal;
5mod terminal_grid;
6mod wezterm;
7
8#[cfg(feature = "local-terminal")]
9pub mod local_terminal;
10
11pub use terminal::{
12    Action, Message, Terminal,
13    style::{CursorShape, Palette256, Style},
14};
15pub use terminal_grid::Size;