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

export const todoActions = createActionsFromDefinitions({
  resize: {
    width: PropTypes.number.isRequired,
  },
  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;