skhtml/examples/dodrio/todomvc/src/keys.rs

8 lines
176 B
Rust

//! Constants for `KeyboardEvent::key_code`.`
/// The key code for the enter key.
pub const ENTER: u32 = 13;
/// The key code for the escape key.
pub const ESCAPE: u32 = 27;