export interface KeyBinding { keys: string; action: string; } export const KEY_BINDINGS: KeyBinding[] = [ { keys: "4", action: "Insert coin" }, { keys: "1", action: "Start game" }, { keys: "Enter", action: "Launch ball" }, { keys: "Left Shift", action: "Left flipper" }, { keys: "Right Shift", action: "Right flipper" }, ];