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