mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
allowed_hosts: PropTypes.oneOfType([
|
|
PropTypes.string, PropTypes.number,
|
|
]),
|
|
expiry: PropTypes.string,
|
|
hosts: PropTypes.number,
|
|
});
|