@fradev/ng-snotify
Version:
Angular 2+ notifications center
16 lines (15 loc) • 441 B
TypeScript
import { SnotifyToast } from '../toast/snotify-toast.model';
/**
* Notifications object
*/
export interface SnotifyNotifications {
left_top?: SnotifyToast[];
left_center?: SnotifyToast[];
left_bottom?: SnotifyToast[];
right_top?: SnotifyToast[];
right_center?: SnotifyToast[];
right_bottom?: SnotifyToast[];
center_top?: SnotifyToast[];
center_center?: SnotifyToast[];
center_bottom?: SnotifyToast[];
}