Files
cloud-v3/src/current/current.types.ts
Первов Артем 05a9e0e535 first commit
2026-06-19 08:18:52 +03:00

15 lines
303 B
TypeScript

export type CurrentRow = {
edge: string;
tag: string;
value: number;
createdAt: Date;
updatedAt: Date;
name: string | null;
tag_group: string | null;
min: number | null;
max: number | null;
comment: string | null;
unit_of_measurement: string | null;
precision: number | null;
};