fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-24 18:40:37 +02:00
parent b9b80d1078
commit d9326300b0

View File

@ -3,3 +3,9 @@ export interface ITypedRequest {
request: object;
response: object;
}
export interface IBroadCastEvent<T> {
broadcastMessage: string;
uniqueEventId: string;
payload: T;
}