2021-04-12 13:32:25 +00:00
|
|
|
import PropTypes from "prop-types";
|
2017-01-16 20:59:01 +00:00
|
|
|
|
2021-09-01 01:02:23 +00:00
|
|
|
export interface IStatusLabels {
|
|
|
|
loading_counts: boolean;
|
|
|
|
new_count: number;
|
|
|
|
online_count: number;
|
|
|
|
offline_count: number;
|
2022-05-23 19:11:02 +00:00
|
|
|
mia_count: number; // DEPRECATED: to be removed in Fleet 5.0
|
2021-09-01 01:02:23 +00:00
|
|
|
}
|
2021-09-30 19:32:06 +00:00
|
|
|
|
2017-01-16 20:59:01 +00:00
|
|
|
export default PropTypes.shape({
|
|
|
|
loading_counts: PropTypes.bool,
|
2017-01-19 21:29:49 +00:00
|
|
|
new_count: PropTypes.number,
|
2017-01-16 20:59:01 +00:00
|
|
|
online_count: PropTypes.number,
|
|
|
|
offline_count: PropTypes.number,
|
2022-05-23 19:11:02 +00:00
|
|
|
mia_count: PropTypes.number, // DEPRECATED: to be removed in Fleet 5.0
|
2017-01-16 20:59:01 +00:00
|
|
|
});
|