ngx-toast-notifications
Version:
Toast notifications for Angular applications
17 lines (16 loc) • 430 B
TypeScript
import { ToastType } from '../toast-notifications.config';
import { Toaster } from '../toaster';
export declare class ToastNotifications {
private _toaster;
constructor(_toaster: Toaster);
/**
* @deprecated since version 1.0.0
*/
next(toast: {
text: string;
caption?: string;
type?: ToastType;
lifetime?: number;
duration?: number;
}): void;
}