UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 463 B
import { Point } from './statistics/Point'; import { Tag } from './statistics/Tag'; import { DeviceStatisticsUnitEnum } from '../DeviceStatisticsUnitEnum'; /** Device Statistics Datapoints */ export interface Statistics { /** Name of the serie */ name: string; /** List of point */ points: Point[]; /** List of tags */ tags: Tag[]; /** Unit of the serie */ unit: DeviceStatisticsUnitEnum; } //# sourceMappingURL=Statistics.d.ts.map