Files
lightController/src/vueLib/models/Value.ts

8 lines
133 B
TypeScript

import type { UUID } from 'crypto';
export interface Value {
uuid?: UUID;
path: string;
value: number | string | undefined;
}