UNPKG

167 BTypeScriptView Raw
1export interface NestGateway {
2 afterInit?: (server: any) => void;
3 handleConnection?: (...args: any[]) => void;
4 handleDisconnect?: (client: any) => void;
5}