tui-markup-renderer 1.1.1

Rust library to use TUI and markup to build UI terminal interfaces.
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashMap;

pub enum EventResponse {
    NOOP,
    QUIT,
    STATE(HashMap<String, String>),
    CLEANFOCUS(HashMap<String, String>),
}