first commit
This commit is contained in:
11
src/models/Response.ts
Normal file
11
src/models/Response.ts
Normal 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;
|
||||
};
|
Reference in New Issue
Block a user