UNPKG

@addapptables/ng-socket-io

Version:
7 lines (6 loc) 445 B
import { ISocket } from '@addapptables/ng-web-socket'; export declare class SocketIoAdapter implements ISocket<SocketIOClient.Socket, SocketIOClient.ConnectOpts> { connect(url: string, options?: SocketIOClient.ConnectOpts): Promise<SocketIOClient.Socket>; bindEvent(connection: SocketIOClient.Socket, event: string, callFunction: (...args: any[]) => void): void; disconnect(connection: SocketIOClient.Socket): Promise<void>; }