- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
/**
|
|
* 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;
|
|
}
|