aumm_core/
lib.rs

1pub mod config;
2pub mod event;
3pub mod gesture;
4pub mod key;
5pub mod recognizer;
6pub mod binding;
7pub mod macros;
8pub mod executor;
9pub mod error;
10pub mod time;
11
12pub use config::Thresholds;
13pub use event::{ KeyEvent, KeyState, InputEvent };
14pub use gesture::{ Gesture, TapKind, GestureEvent };
15pub use key::KeyId;
16pub use recognizer::Recognizer;
17pub use binding::{ BindingTable, BindingKey };
18pub use macros::{ MacroPlan, MacroId, MacroRegistry };
19pub use executor::Executor;
20pub use error::AummError;