UNPKG

283 BTypeScriptView Raw
1import { Module } from '../injector/module';
2/**
3 * Calls the `onModuleInit` function on the module and its children
4 * (providers / controllers).
5 *
6 * @param module The module which will be initialized
7 */
8export declare function callModuleInitHook(module: Module): Promise<void>;