UNPKG

mikudos-socketio-app

Version:

mikudos-socketio-app for connection and call methods and sync events on mikudos-socketio-app server, which is provided only for socket.io connection.

15 lines (13 loc) 239 B
export enum MessageType { REQUEST = 0, RESPONSE = 1, RECEIVED = 2, UNRECEIVED = 3 } export interface Message { msg: string; channelId: string; msgId: number; expire: number; messageType: MessageType; }