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

export default <ActionDefinitions>{
  install: {
    recipeId: PropTypes.string.isRequired,
    update: PropTypes.bool,
  },
  update: {},
};