UNPKG

189 BTypeScriptView Raw
1/**
2 * @publicApi
3 */
4export interface NestGateway {
5 afterInit?: (server: any) => void;
6 handleConnection?: (...args: any[]) => void;
7 handleDisconnect?: (client: any) => void;
8}