NgModuleFactory

      
      abstract class NgModuleFactory<T> {
  abstract moduleType: Type<T>
  abstract create(parentInjector: Injector): NgModuleRef<T>
}
    

属性

属性说明
abstract moduleType: Type<T> 只读

方法

abstract create(parentInjector: Injector): NgModuleRef<T>
      
      abstract create(parentInjector: Injector): NgModuleRef<T>
    
参数
parentInjector Injector
返回值

NgModuleRef<T>