mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
12 lines
271 B
JavaScript
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;
|