We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f75e0 commit 73da5c2Copy full SHA for 73da5c2
src/simulator/src/hotkey_binder/defaultKeys.js renamed to src/simulator/src/hotkey_binder/defaultKeys.ts
@@ -1,8 +1,11 @@
1
/**Add more elements here, along with a valid value for key
2
* Elements keys must have the same name as their ID
3
**/
4
+export interface DefaultKeysType {
5
+ [key: string]: string;
6
+}
7
-export const defaultKeys = {
8
+export const defaultKeys: DefaultKeysType = {
9
'New Circuit': 'Shift + N',
10
'Save Online': 'Ctrl + S',
11
'Save Offline': 'Ctrl + Alt + S',
0 commit comments