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