Files
typedrequest-interfaces/ts/index.ts

12 lines
188 B
TypeScript
Raw Normal View History

2019-08-22 15:40:10 +02:00
export interface ITypedRequest {
method: string;
request: object;
response: object;
2019-08-23 16:57:45 +02:00
}
2019-09-24 18:40:37 +02:00
export interface IBroadCastEvent<T> {
2019-11-10 16:35:43 +01:00
name: string;
2019-09-24 18:40:37 +02:00
uniqueEventId: string;
payload: T;
}