1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! An easy tty library.
//!
//! This library aim to be easy to use without being overly abstracted. Key components:
//! * ANSI [CSI][wiki-csi] builder.
//! * Convenience wrapper and macros for [`stdout`][mod-stdout].
//! * Event handler.
//!
//! [wiki-csi]: https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_(Control_Sequence_Introducer)_sequences
//! [mod-output]: crate::output
//! [mod-stdout]: std::io::stdout
pub use *;
pub use crate*;
pub use *;
pub use *;
pub use event_stream;
pub use *;
pub use *;
pub use C0;
// pub mod macros;