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

7 lines
126 B
TypeScript

/**
* @publicApi
*/
export interface OnGatewayConnection<T = any> {
handleConnection(client: T, ...args: any[]): any;
}