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

import PropTypes from 'prop-types';

/** @module */

/**
 * Reusable object to use in `propTypes` for a `overview stats`
 * @type {Object}
 * @category templating
 */
const PlannedDayStatsShape = {
  allowedHealthyExtraA: PropTypes.number,
  allowedHealthyExtraB: PropTypes.number,
  date: PropTypes.string,
  totalAvailableSyns: PropTypes.number,
  totalHealthyExtraAForDay: PropTypes.number,
  totalHealthyExtraBForDay: PropTypes.number,
  totalSynsForDay: PropTypes.number,
  totalSynsStringRepresentation: PropTypes.string,
};

export default PlannedDayStatsShape;