projects/rebirth-ng/src/lib/overlay/overlay-options.model.ts
Properties |
|
backdropClass |
backdropClass:
|
Type : string
|
Optional |
component |
component:
|
Type : Type<any>
|
Optional |
componentFactoryResolver |
componentFactoryResolver:
|
Type : ComponentFactoryResolver
|
Optional |
html |
html:
|
Type : string | SafeHtml
|
Optional |
injector |
injector:
|
Type : Injector
|
Optional |
rootContainer |
rootContainer:
|
Type : ViewContainerRef
|
Optional |
import { Type, ComponentFactoryResolver, Injector, ViewContainerRef } from '@angular/core';
import { SafeHtml } from '@angular/platform-browser';
export interface OverlayOptions {
component?: Type<any>;
html?: string | SafeHtml;
componentFactoryResolver?: ComponentFactoryResolver;
injector?: Injector;
backdropClass?: string;
rootContainer?: ViewContainerRef;
}