UNPKG

288 BTypeScriptView Raw
1/**
2 * Interface defining method called once the application has fully started and
3 * is bootstrapped.
4 *
5 * @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events)
6 *
7 * @publicApi
8 */
9export interface OnApplicationBootstrap {
10 onApplicationBootstrap(): any;
11}