(feat): add hotkeys
This commit is contained in:
parent
915568f739
commit
85633a1c81
27 changed files with 1014 additions and 33 deletions
|
|
@ -487,6 +487,7 @@ export interface Storage extends SettingsStorageDefaults {
|
|||
height: number;
|
||||
} | null;
|
||||
reactions: Record<string, number>;
|
||||
hotkey_overrides: Record<string, string | null>;
|
||||
}
|
||||
|
||||
export const storageDefaults: Storage = {
|
||||
|
|
@ -577,6 +578,7 @@ export const storageDefaults: Storage = {
|
|||
":fire:": 2,
|
||||
":white_check_mark:": 1,
|
||||
},
|
||||
hotkey_overrides: {},
|
||||
};
|
||||
|
||||
// User Status
|
||||
|
|
|
|||
Loading…
Reference in a new issue