lct-components
Version:
LCT basic components
14 lines (13 loc) • 551 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { ToastService } from '../toast.service';
import * as i0 from "@angular/core";
export declare class ToastComponent implements OnInit, OnDestroy {
private toastService;
toasts: any[];
constructor(toastService: ToastService);
ngOnInit(): void;
removeToast(toast: any): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "app-toast", never, {}, {}, never, never>;
}