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

10 lines
209 B
TypeScript

export type Subscribe = {
uuid?: string | undefined;
path?: string | undefined;
depth?: number;
value?: string | number | boolean | undefined;
hasChild?: boolean;
};
export type Subs = Subscribe[];