import { ICallback } from "./ICallback"; export interface IHotKeyAction { /** * The Pressed Key. Please use a valid "KeyCode". * * @type {string} */ key: string, /** * The corresponding Callback, which will handle the * Action if a Hotkey Press has been detected. */ onPress: ICallback /** * The corresponding Callback, which will handle the * Action if a Hotkey Press has been detected. */ onRelease?: ICallback }