Files
evento/node_modules/@nestjs/core/hooks/on-app-bootstrap.hook.d.ts
2026-03-18 14:55:56 -03:00

9 lines
297 B
TypeScript

import { Module } from '../injector/module';
/**
* Calls the `onApplicationBootstrap` function on the module and its children
* (providers / controllers).
*
* @param module The module which will be initialized
*/
export declare function callModuleBootstrapHook(module: Module): Promise<any>;