diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-06 22:17:01 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-06 22:17:18 +0900 |
commit | b002d70070a1b691b635220bc694c48df36faca5 (patch) | |
tree | fd69cc7a74e30c33f33376acf7e36ce585c819d9 /src/content/reducers | |
parent | a0882bbceb7ed71d56bf8557620449fbc3f19749 (diff) |
src/content
Diffstat (limited to 'src/content/reducers')
-rw-r--r-- | src/content/reducers/input.ts | 3 | ||||
-rw-r--r-- | src/content/reducers/mark.ts | 6 |
2 files changed, 3 insertions, 6 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 = { diff --git a/src/content/reducers/mark.ts b/src/content/reducers/mark.ts index e78b7b9..7409938 100644 --- a/src/content/reducers/mark.ts +++ b/src/content/reducers/mark.ts @@ -1,10 +1,6 @@ +import Mark from '../Mark'; import * as actions from '../actions'; -interface Mark { - x: number; - y: number; -} - export interface State { setMode: boolean; jumpMode: boolean; |