File

projects/rebirth-ng/src/lib/overlay/overlay-options.model.ts

Index

Properties

Properties

backdropClass
backdropClass: string
Type : string
Optional
component
component: Type<any>
Type : Type<any>
Optional
componentFactoryResolver
componentFactoryResolver: ComponentFactoryResolver
Type : ComponentFactoryResolver
Optional
html
html: string | SafeHtml
Type : string | SafeHtml
Optional
injector
injector: Injector
Type : Injector
Optional
rootContainer
rootContainer: ViewContainerRef
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;
}

results matching ""

    No results matching ""