7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
/**
|
|
* @publicApi
|
|
*/
|
|
export interface OnGatewayInit<T = any> {
|
|
afterInit(server: T): any;
|
|
}
|