| //! Spectral Terminal Core — Grid, VT Parser, and Damage Tracking | |
| pub mod ansi; | |
| pub mod cell; | |
| pub mod color; | |
| pub mod config; | |
| pub mod damage; | |
| pub mod grid; | |
| pub mod term; | |
| pub use cell::{Cell, CellFlags}; | |
| pub use color::Rgb8; | |
| pub use config::{Config, CursorStyle}; | |
| pub use grid::{Grid, Line}; | |
| pub use term::Terminal; | |