fix(core): update

This commit is contained in:
2019-04-24 23:27:57 +02:00
parent 4678e44d16
commit 139c71a451
5 changed files with 51 additions and 9 deletions

View File

@ -1,3 +1,4 @@
export * from './http.interfaces';
export * from './universechannel.interfaces';
export * from './universemessage.interfaces';
export * from './universeactions.interfaces';

View File

@ -0,0 +1,9 @@
export type IServerCallActions = 'subscribe' | 'sendmessage' | 'unsubscribe';
/**
* the interface for a subscription
*/
export interface IServerCallSubscribeActionPayload {
name: string;
passphrase: string;
}