first commit

This commit is contained in:
Adrian Zürcher
2025-05-05 18:38:51 +02:00
parent 584651a54e
commit 488ce84ae9
48 changed files with 9517 additions and 0 deletions

11
src/models/Response.ts Normal file
View File

@@ -0,0 +1,11 @@
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;
};