export interface SocketCloseEvent { /** * 一个数字值表示关闭连接的状态号,表示连接被关闭的原因 */ code: number; /** * 一个可读的字符串,表示连接被关闭的原因 */ reason: string; }