jellyflow_runtime/runtime/keyboard/mod.rs
1//! Renderer-neutral keyboard intent helpers.
2//!
3//! This module collects store-facing keyboard actions such as deleting the current selection and
4//! nudging selected nodes, so adapters do not need to route each key through unrelated modules.
5
6mod store;
7mod types;
8
9pub use types::{KeyboardActionError, KeyboardActionOutcome, KeyboardDeleteAction, KeyboardIntent};