UNPKG

systelab-components

Version:

systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.

26 lines (25 loc) 1.06 kB
import { OnDestroy, OnInit } from '@angular/core'; import { AnimationEvent } from '@angular/animations'; import { ToastAnimationState } from './toast-animation'; import { ToastConfig, ToastData } from './toast-config'; import { ToastRef } from './toast-ref'; import { ToastService } from './toast.service'; import * as i0 from "@angular/core"; export declare class ToastComponent implements OnInit, OnDestroy { readonly data: ToastData; readonly ref: ToastRef; readonly toastService: ToastService; iconClass: string; toastClass: string; animationState: ToastAnimationState; config: ToastConfig; private _intervalId; constructor(data: ToastData, ref: ToastRef, toastService: ToastService); ngOnInit(): void; closeToast(): void; onFadeFinished(event: AnimationEvent): void; ngOnDestroy(): void; private close; static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "systelab-toast", never, {}, {}, never, never, false, never>; }