aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/actions.js
blob: dc63d5fcd3b3f77de7c8e1e18a20e2a00bc841dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import PropTypes from 'prop-types';
import { createActionsFromDefinitions } from '../../actions/lib/actions';

export const todoActions = createActionsFromDefinitions({
  resize: {
    width: PropTypes.number.isRequired,
  },
  toggleTodosPanel: {},
  setTodosWebview: {
    webview: PropTypes.instanceOf(Element).isRequired,
  },
  handleHostMessage: {
    action: PropTypes.string.isRequired,
    data: PropTypes.object,
  },
  handleClientMessage: {
    action: PropTypes.string.isRequired,
    data: PropTypes.object,
  },
}, PropTypes.checkPropTypes);

export default todoActions;