ft_transcendence/pong/node_modules/@nestjs/common/interfaces/hooks/on-application-bootstrap.interface.d.ts
2023-05-02 19:15:50 +02:00

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;
}