UNPKG

ngx-mfe

Version:

A library for working with MFE in Angular in a plugin-based approach and with Angular routing.

6 lines (5 loc) 208 B
import { Type, NgModuleRef } from "@angular/core"; export type ComponentWithNgModuleRef<TComponent = unknown, TModule = unknown> = { component: Type<TComponent>; ngModuleRef: NgModuleRef<TModule>; };