aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions/settings.ts
blob: 4796f6a022dfe826d751652415873450df7654b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import PropTypes from 'prop-types';
import { ActionDefinitions } from './lib/actions';

export default <ActionDefinitions>{
  update: {
    type: PropTypes.string.isRequired,
    data: PropTypes.object.isRequired,
  },
  remove: {
    type: PropTypes.string.isRequired,
    key: PropTypes.string.isRequired,
  },
};