ratkit 0.2.15

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Foundation types for the code widget.

pub mod code_event;
pub mod code_language;
pub mod code_line;
pub mod code_outline_item;

pub use code_event::CodeEvent;
pub use code_language::CodeLanguage;
pub use code_line::CodeLine;
pub use code_outline_item::CodeOutlineItem;