11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
export type IServerCallActions =
|
|
| 'channelSubscription'
|
|
| 'processMessage'
|
|
| 'channelUnsubscribe'
|
|
| 'terminateConnection';
|
|
|
|
|
|
export interface IServerUnsubscribeActionPayload {
|
|
name: string;
|
|
}
|