UNPKG

321 BTypeScriptView Raw
1import { Compiler, NgModuleFactory } from '@angular/core';
2/**
3 * NgModuleFactoryLoader that uses SystemJS to load NgModuleFactory
4 */
5export declare class NgModuleLoader {
6 private _compiler;
7 constructor(_compiler: Compiler);
8 load(modulePath: string, ngModuleExport: string): Promise<NgModuleFactory<any>>;
9}