Files
lightController/src/models/Set.ts
2025-05-28 21:54:43 +02:00

10 lines
171 B
TypeScript

export type Set = {
uuid?: string | undefined;
path: string;
type?: string;
value: number | boolean | undefined;
create?: boolean;
};
export type Sets = Set[];