You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Helpers/Props/Shapes/locationShape.js

12 lines
271 B

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;