src/content
This commit is contained in:
parent
a0882bbceb
commit
b002d70070
19 changed files with 119 additions and 80 deletions
|
@ -1,5 +1,6 @@
|
|||
import Redux from 'redux';
|
||||
import Settings from '../../shared/Settings';
|
||||
import * as keyUtils from '../../shared/utils/keys';
|
||||
|
||||
// Enable/disable
|
||||
export const ADDON_SET_ENABLED = 'addon.set.enabled';
|
||||
|
@ -51,7 +52,7 @@ export interface SettingSetAction extends Redux.Action {
|
|||
|
||||
export interface InputKeyPressAction extends Redux.Action {
|
||||
type: typeof INPUT_KEY_PRESS;
|
||||
key: string;
|
||||
key: keyUtils.Key;
|
||||
}
|
||||
|
||||
export interface InputClearKeysAction extends Redux.Action {
|
||||
|
|
Reference in a new issue