aboutsummaryrefslogtreecommitdiff
path: root/src/actions/input.js
blob: c72b9e0dc073d8367510c1bc080347d3f716e619 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import actions from '../actions';

export function keyPress(code, ctrl) {
  return {
    type: actions.INPUT_KEY_PRESS,
    code,
    ctrl
  };
}

export function clearKeys() {
  return {
    type: actions.INPUT_CLEAR_KEYS
  }
}