fix(core): update

This commit is contained in:
2019-04-28 12:42:08 +02:00
parent 2f528d1812
commit 8157f2a56b
7 changed files with 231 additions and 102 deletions

View File

@ -6,4 +6,8 @@ export type IServerCallActions = 'subscribe' | 'sendmessage' | 'unsubscribe';
export interface IServerCallSubscribeActionPayload {
name: string;
passphrase: string;
}
}
export interface IServerUnsubscribeActionPayload {
name: string;
}