//! Minimal, feature-gated, WASM-compatible subset of crossterm.
//!//! Drop-in replacement for the crossterm APIs that ratatui-based TUI apps
//! typically need.
usestd::io::Write;/// A command that can be written as an ANSI escape sequence.
pubtraitCommand{fnwrite_ansi(&self, w:&mut impl Write)->std::io::Result<()>;}#[cfg(feature ="execute")]modmacros;#[cfg(feature ="events")]pubmodevent;#[cfg(feature ="terminal")]pubmodterminal;#[cfg(feature ="terminal")]pubmodcursor;#[cfg(feature ="terminal")]pubmodstyle;