ngx-toast-notifications
Version:
Toast notifications for Angular applications
12 lines (11 loc) • 485 B
TypeScript
import { ComponentFactoryResolver, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
import { Toast } from '../toast';
export declare class ToastContentDirective implements OnInit, OnDestroy {
private _viewContainerRef;
private _componentFactoryResolver;
toast: Toast;
private _componentRef;
constructor(_viewContainerRef: ViewContainerRef, _componentFactoryResolver: ComponentFactoryResolver);
ngOnInit(): void;
ngOnDestroy(): void;
}