UNPKG

ng-angular-popup

Version:

A modern, lightweight, and customizable toast notification library for Angular applications

10 lines (9 loc) 295 B
import { ToastType } from './toast-type.enum'; export declare class ToastMessage { message: string; type: ToastType; title?: string | undefined; duration: number; id: number; constructor(message: string, type: ToastType, title?: string | undefined, duration?: number); }