UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

11 lines (10 loc) • 248 B
/** * 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; }