- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
/**
|
|
* Interface defining method called once the application has fully started and
|
|
* is bootstrapped.
|
|
*
|
|
* @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events)
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export interface OnApplicationBootstrap {
|
|
onApplicationBootstrap(): any;
|
|
}
|