aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions/settings.ts
blob: b99344a03fd4a5fe7b3cd7b52b8dac1a1afd9575 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import PropTypes from 'prop-types';
import type { 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,
  },
};