(action: string)
| 17 | const [history, setHistory] = createSignal<Array<string>>([]) |
| 18 | const [helloSequenceEnabled, setHelloSequenceEnabled] = createSignal(true) |
| 19 | const addToHistory = (action: string) => { |
| 20 | setLastSequence(action) |
| 21 | setHistory((h) => [...h.slice(-9), action]) |
| 22 | } |
| 23 | |
| 24 | createHotkeySequences([ |
| 25 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…