mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
dc4b97d15f
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
detail_updated_at: PropTypes.string,
|
|
hostname: PropTypes.string,
|
|
id: PropTypes.number,
|
|
ip: PropTypes.string,
|
|
mac: PropTypes.string,
|
|
memory: PropTypes.number,
|
|
os_version: PropTypes.string,
|
|
osquery_version: PropTypes.string,
|
|
platform: PropTypes.string,
|
|
status: PropTypes.string,
|
|
updated_at: PropTypes.string,
|
|
uptime: PropTypes.number,
|
|
uuid: PropTypes.string,
|
|
});
|