UNPKG

@lotto24-angular/imports-orchestrator

Version:

Orchestrate dynamically imported components in Angular applications

6 lines (5 loc) 316 B
import { Type } from '@angular/core'; import { ESModule } from './module'; export type Constructor = Type<unknown>; export declare function isAssumedESModuleContainingAngularComponentsOrModules(type: any): boolean; export declare function resolveConstructorsFromESModule(esm: ESModule | Constructor): Constructor[];