Files
lightController/src/models/Set.ts
Adrian Zürcher 3e2b95c1c3 update dbmData and Subscription so it is reactive
new save load scenes
2025-06-19 19:30:28 +02:00

10 lines
180 B
TypeScript

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