// websocket的几个状态 export enum WEBSOCKET_STATE { CONNECTING = 0, OPEN = 1, CLOSING = 2, CLOSED = 3, } export const SDK_NAME = 'RainbowWebsocket'