UNPKG

474 BTypeScriptView Raw
1import { Injector, Type } from '@angular/core';
2export interface FramingContainerOutletContent {
3 /**
4 * The name of the container to display this content in.
5 */
6 container: string;
7 /**
8 * The content component.
9 */
10 component: Type<any>;
11 /**
12 * Injector to use for this content component.
13 * If not set then container-outlet Injector is used.
14 */
15 injector?: Injector;
16 /**
17 * A unique id.
18 */
19 id?: string;
20}