ft_transcendence/pong/node_modules/@nestjs/websockets/interfaces/nest-gateway.interface.d.ts
2023-05-02 19:15:50 +02:00

9 lines
189 B
TypeScript

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