ad-custom-lib
Version:
This is an UI custom library based on Adminlte library with purpose for personal use, if you need a full template of Primeng please visit https://github.com/mledour/angular-admin-lte
53 lines (52 loc) • 1.69 kB
TypeScript
import { AfterViewInit, ChangeDetectorRef, EventEmitter, NgZone, OnDestroy, Renderer2, ViewContainerRef } from '@angular/core';
import { AnimationEvent } from '../animations/animations.interface';
export declare class AlertComponent implements AfterViewInit, OnDestroy {
private changeDetectorRef;
private ngZone;
private renderer2;
private viewContainerRef;
dismissibleClass: string;
isDismissible: boolean;
remove: boolean;
removed: boolean;
type: string;
private listeners;
backgroundColor: string;
callout: boolean;
color: string;
dismissOnTimeout: number;
_isDismissible: boolean;
styleClass: string;
onCollapseStart: EventEmitter<any>;
onCollapseDone: EventEmitter<any>;
private removeButtonElement;
private containerElementRef;
/**
* @method constructor
* @param changeDetectorRef [description]
* @param ngZone [description]
* @param renderer2 [description]
* @param viewContainerRef [description]
*/
constructor(changeDetectorRef: ChangeDetectorRef, ngZone: NgZone, renderer2: Renderer2, viewContainerRef: ViewContainerRef);
/**
* @method ngOnInit
*/
ngAfterViewInit(): void;
/**
* @method ngOnDesroy
*/
ngOnDestroy(): void;
/**
* [collapseStart description]
* @method collapseStart
* @param event [description]
*/
collapseStart(event: AnimationEvent): void;
/**
* [collapseDone description]
* @method collapseDone
* @param event [description]
*/
collapseDone(event: AnimationEvent): void;
}