UNPKG

nxkit

Version:

This is a collection of tools, independent of any other libraries

27 lines (26 loc) 515 B
import { IBuffer } from '../../buffer'; import { WSConversation } from './conv'; export default class WebConversation extends WSConversation { private m_req; setGzip(value: boolean): void; /** * @ovrewrite */ initialize(): Promise<void>; /** * @ovrewrite */ close(): void; /** * @ovrewrite */ send(data: IBuffer): Promise<void>; /** * @ovrewrite */ ping(): Promise<void>; /** * @ovrewrite */ pong(): Promise<void>; }