ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
10 lines (9 loc) • 321 B
TypeScript
import { Compiler, NgModuleFactory } from '@angular/core';
/**
* NgModuleFactoryLoader that uses SystemJS to load NgModuleFactory
*/
export declare class NgModuleLoader {
private _compiler;
constructor(_compiler: Compiler);
load(modulePath: string, ngModuleExport: string): Promise<NgModuleFactory<any>>;
}