keyboard-codes 0.2.0

Cross-platform keyboard key code mapping and conversion
Documentation
//! Core type definitions for keyboard keys and platforms

/// Key code mapping trait definitions
pub mod code_mapper;

/// Keyboard key enumeration definitions
pub mod key;

/// Keyboard modifier key definitions
pub mod modifier;

/// Platform type definitions
pub mod platform;

// Re-export the main types
pub use code_mapper::KeyCodeMapper;
pub use key::Key;
pub use modifier::Modifier;
pub use platform::Platform;