fix(core): update
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
export * from './http.interfaces';
|
||||
export * from './universechannel.interfaces';
|
||||
export * from './universemessage.interfaces';
|
||||
export * from './universeactions.interfaces';
|
||||
|
9
ts/interfaces/universeactions.interfaces.ts
Normal file
9
ts/interfaces/universeactions.interfaces.ts
Normal file
@ -0,0 +1,9 @@
|
||||
export type IServerCallActions = 'subscribe' | 'sendmessage' | 'unsubscribe';
|
||||
|
||||
/**
|
||||
* the interface for a subscription
|
||||
*/
|
||||
export interface IServerCallSubscribeActionPayload {
|
||||
name: string;
|
||||
passphrase: string;
|
||||
}
|
Reference in New Issue
Block a user