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

12 lines
245 B
TypeScript

import type { Gets } from './Get';
import type { Sets } from './Set';
import type { Subs } from './Subscribe';
import type { Pubs } from './Publish';
export type Response = {
get?: Gets;
set?: Sets;
subscribe?: Subs;
publish?: Pubs;
};