import PropTypes from 'prop-types';
/** @module */
/**
* Reusable object to use in `propTypes` for a `pagination` prop.
* @type {Object}
* @category templating
*/
const paginationShape = {
limit: PropTypes.number,
offset: PropTypes.number,
hasMore: PropTypes.bool,
total: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
export default paginationShape;