smartuniverse/ts/interfaces/universeactions.interfaces.ts
2019-04-24 23:27:57 +02:00

9 lines
215 B
TypeScript

export type IServerCallActions = 'subscribe' | 'sendmessage' | 'unsubscribe';
/**
* the interface for a subscription
*/
export interface IServerCallSubscribeActionPayload {
name: string;
passphrase: string;
}