a zip code crypto-currency system good for red ONLY

ng-module-loader.d.ts 321B

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