diff options
Diffstat (limited to 'src/content/reducers/input.ts')
-rw-r--r-- | src/content/reducers/input.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/content/reducers/input.ts b/src/content/reducers/input.ts index 6257e49..35b9075 100644 --- a/src/content/reducers/input.ts +++ b/src/content/reducers/input.ts @@ -1,7 +1,8 @@ import * as actions from '../actions'; +import * as keyUtils from '../../shared/utils/keys'; export interface State { - keys: string[]; + keys: keyUtils.Key[], } const defaultState: State = { |