UNPKG

248 BTypeScriptView Raw
1/**
2 * Interface defining method called once the host module has been initialized.
3 *
4 * @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events)
5 *
6 * @publicApi
7 */
8export interface OnModuleInit {
9 onModuleInit(): any;
10}