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

21 lines
407 B
TypeScript

export type CurrentItemDto = {
edge: string;
tag: string;
value: number | null;
createdAt: Date;
updatedAt: Date;
time: Date;
name: string | null;
tagGroup: string | null;
min: number | null;
max: number | null;
comment: string | null;
unitOfMeasurement: string | null;
precision: number | null;
};
export type CurrentResponseDto = {
edge: string;
items: CurrentItemDto[];
};