interface CustomShortcut {
    combos: string | string[];
    command: string;
    label?: string;
    onTrigger: () => void;
}

Properties

combos: string | string[]
command: string
label?: string
onTrigger: () => void