Initial commit - Event Planner application
This commit is contained in:
12
node_modules/@nestjs/common/interfaces/hooks/on-destroy.interface.d.ts
generated
vendored
Normal file
12
node_modules/@nestjs/common/interfaces/hooks/on-destroy.interface.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Interface defining method called just before Nest destroys the host module
|
||||
* (`app.close()` method has been evaluated). Use to perform cleanup on
|
||||
* resources (e.g., Database connections).
|
||||
*
|
||||
* @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events)
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface OnModuleDestroy {
|
||||
onModuleDestroy(): any;
|
||||
}
|
||||
Reference in New Issue
Block a user