Source: app/util/proptypes/apiEntities/foodSearchExplanation.js

import PropTypes from 'prop-types';

/** @module */

/**
 * Reusable object to use in `propTypes` for a `resultExplanation` prop.
 * @type {Object}
 * @category templating
 */
const foodSearchExplanationShape = {
  changedSearchTerms: PropTypes.bool,
  suggestedSearchTerm: PropTypes.string,
  suggestionExists: PropTypes.bool,
  usedSearchTerms: PropTypes.string,
};

export default foodSearchExplanationShape;