interface AddKeyboardActionOptions {
    callback?: () => void;
    changeable?: boolean;
    enabled?: boolean;
    forUserscript?: boolean;
    group: string;
    id: string;
    name: string;
    originalShortcut: null | string;
    shortcut: KeyStroke;
}

Properties

callback?: () => void
changeable?: boolean
enabled?: boolean
forUserscript?: boolean
group: string
id: string
name: string
originalShortcut: null | string
shortcut: KeyStroke