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

11 lines
248 B
TypeScript

/**
* Interface defining method called once the host module has been initialized.
*
* @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events)
*
* @publicApi
*/
export interface OnModuleInit {
onModuleInit(): any;
}