aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/input.ts
blob: 24dbb99bdc45cab2295c14dd04bec67347206ec7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import * as actions from './index';
import Key from '../domains/Key';

const keyPress = (key: Key): actions.InputAction => {
  return {
    type: actions.INPUT_KEY_PRESS,
    key,
  };
};

const clearKeys = (): actions.InputAction => {
  return {
    type: actions.INPUT_CLEAR_KEYS
  };
};

export { keyPress, clearKeys };