fix(core): update

This commit is contained in:
2019-08-12 14:59:37 +02:00
parent b34be4dcba
commit f4ce784a59
12 changed files with 170 additions and 77 deletions

View File

@ -1,4 +1,8 @@
export type IServerCallActions = 'subscribe' | 'sendmessage' | 'unsubscribe';
export type IServerCallActions =
| 'channelSubscription'
| 'processMessage'
| 'channelUnsubscribe'
| 'terminateConnection';
/**
* the interface for a subscription

View File

@ -1,4 +1,4 @@
export interface IAuthenticationRequest {
channelName: string;
password: string;
}
}