vize_fresco 0.206.0

Fresco - Vue TUI framework (Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Rendering module for TUI output.
//!
//! Provides efficient differential rendering:
//! - Render tree management
//! - Node definitions
//! - Diffing algorithm
//! - Paint operations

mod diff;
mod node;
mod painter;
mod tree;

pub use node::{
    Appearance, BorderStyle, InputContent, NodeId, NodeKind, RawContent, RenderNode, TextContent,
};
pub use painter::Painter;
pub use tree::RenderTree;