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

8 lines
95 B
TypeScript

/**
* @publicApi
*/
export interface WsResponse<T = any> {
event: string;
data: T;
}