Updated level and position types.

This commit is contained in:
Giedrius Grabauskas
2016-04-04 21:01:38 +03:00
parent d969b903d1
commit 6dff9058d3

View File

@@ -22,8 +22,8 @@ declare namespace NotificationSystem {
export interface Notification {
title?: string;
message?: string;
level?: string;
position?: string;
level?: "error" | "warning" | "info" | "success";
position?: "tr" | "tl" | "tc" | "br" | "bl" | "bc";
autoDismiss?: number;
dismissible?: boolean;
action?: ActionObject;