termcinema-engine 0.1.0

🧠 Core typewriter-style terminal animation engine (SVG renderer) for termcinema
Documentation
//! Core module: shared configuration structs for rendering.
//!
//! This module re-exports all core configuration types used in the rendering engine.
//! It includes definitions for layout, style, cursor behavior, font selection, and control settings.
//!
//! These types form the backbone of terminal output customization and are commonly used
//! across the renderer, CLI layer, and theme system.

pub use content::*;
pub use control::*;
pub use cursor::*;
pub use font::*;
pub use layout::*;
pub use style::*;
pub use theme::*;

mod content;
mod control;
mod cursor;
mod font;
mod layout;
mod style;
mod theme;