mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
id: PropTypes.number,
|
|
type: PropTypes.string,
|
|
interval: PropTypes.number,
|
|
query: PropTypes.string,
|
|
built_in: PropTypes.bool,
|
|
updated_at: PropTypes.string,
|
|
});
|