Files
lightController/src/models/Publish.ts
Adrian Zürcher 488ce84ae9 first commit
2025-05-05 18:38:51 +02:00

9 lines
146 B
TypeScript

export type Publish = {
event: string;
uuid?: string;
path?: string;
type?: string;
value?: undefined;
};
export type Pubs = Publish[];