projects/dvk/src/lib/content-conductor/containers-map/containers-map.model.ts
A map of string names to view containers.
[name: string]:
|
import { ViewContainerRef } from '@angular/core';
/**
* A map of string names to view containers.
*/
export interface ContainersMap {
[name:string]: ViewContainerRef
}