// export interface ISocket { // connect (channelId: string) // disconnect (channelId: string) // } // export class Socket implements ISocket { // connect (channelId: string) { // } // disconnect (channelId: string) { // } // }