UNPKG

@nestjs/websockets

Version:

Nest - modern, fast, powerful node.js web framework (@websockets)

11 lines (10 loc) 228 B
import { ReplaySubject, Subject } from 'rxjs'; /** * @publicApi */ export interface ServerAndEventStreamsHost<T = any> { server: T; init: ReplaySubject<T>; connection: Subject<any>; disconnect: Subject<any>; }