We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94f8ca9 + 73da5c2 commit 1e4ec54Copy full SHA for 1e4ec54
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