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