import PropTypes from 'prop-types';
import foodShape from './food';
import plannerRecipe from './plannerRecipe';
/** @module */
/**
* Reusable object to use in `propTypes` for a `food` prop.
* @type {Object}
* @category templating
*/
const PlannedDayShape = {
id: PropTypes.string,
memberId: PropTypes.string,
planDateUtc: PropTypes.string,
isSP: PropTypes.bool,
food: PropTypes.arrayOf(PropTypes.shape(foodShape)),
recipe: PropTypes.arrayOf(PropTypes.shape(plannerRecipe)),
};
export default PlannedDayShape;