aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions/settings.js
blob: 3d53cd6740d000378b4143151ac116af0ac61757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import PropTypes from 'prop-types';

export default {
  update: {
    settings: PropTypes.object.isRequired,
  },
  remove: {
    key: PropTypes.string.isRequired,
  },
};