1pub mod ansi;
12pub mod damage;
13pub mod grid;
14pub mod ops;
15pub mod registry;
16pub mod render;
17pub mod search;
18pub mod style;
19pub mod text;
20
21pub use damage::{Damage, Rect};
22pub use grid::{Cell, Grid};
23pub use ops::{BlitCell, BoxCharset, Frame, RenderOp, TruncateMode};
24pub use registry::{GlyphInfo, GlyphRegistry, RenderProfile};
25pub use render::{RenderError, Renderer};
26pub use search::{
27 fuzzy_match_positions_graphemes, fuzzy_match_positions_graphemes_latest,
28 fuzzy_match_positions_graphemes_v1, match_positions_graphemes,
29};
30pub use style::Style;
31pub use text::{
32 apply_highlight, clip_to_cells_spans, clip_to_cells_text, ellipsis_to_cells_spans,
33 ellipsis_to_cells_text, measure_cells_spans, measure_cells_text, normalize_spans,
34 spans_plain_text, wrap_spans_wordwise, Span, Spans, WrapOpts,
35};