UNPKG

recoder-code

Version:

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

12 lines (11 loc) • 314 B
/** * Interface defining method to respond to system signals (when application gets * shutdown by, e.g., SIGTERM) * * @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events) * * @publicApi */ export interface OnApplicationShutdown { onApplicationShutdown(signal?: string): any; }