mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
loading_counts: PropTypes.bool,
|
|
new_count: PropTypes.number,
|
|
online_count: PropTypes.number,
|
|
offline_count: PropTypes.number,
|
|
mia_count: PropTypes.number,
|
|
});
|