1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00
Files
Radarr/frontend/src/Helpers/Props/Shapes/locationShape.js
T
2019-06-11 22:06:43 -04:00

12 lines
271 B
JavaScript

import PropTypes from 'prop-types';
const locationShape = PropTypes.shape({
pathname: PropTypes.string.isRequired,
search: PropTypes.string.isRequired,
state: PropTypes.object,
action: PropTypes.string,
key: PropTypes.string
});
export default locationShape;