UNPKG

@nestjs/websockets

Version:

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

9 lines (8 loc) 189 B
/** * @publicApi */ export interface NestGateway { afterInit?: (server: any) => void; handleConnection?: (...args: any[]) => void; handleDisconnect?: (client: any) => void; }