first commit
This commit is contained in:
10
src/models/Request.ts
Normal file
10
src/models/Request.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { Gets } from './Get';
|
||||
import type { Sets } from './Set';
|
||||
import type { Subs } from './Subscribe';
|
||||
|
||||
export type Request = {
|
||||
get?: Gets;
|
||||
set?: Sets;
|
||||
subscribe?: Subs;
|
||||
unsubscribe?: Subs;
|
||||
};
|
Reference in New Issue
Block a user