Files
cloud-v3/src/history/dto/history-response.dto.ts

23 lines
354 B
TypeScript

export type HistoryPointDto = {
t: number;
min: number;
avg: number;
max: number;
count: number;
};
export type HistorySeriesDto = {
edge: string;
tag: string;
points: HistoryPointDto[];
};
export type HistoryResponseDto = {
edge: string;
tag: string;
from: Date;
to: Date;
granulate: string;
series: HistorySeriesDto[];
};