aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/notifications/utilities/notification.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/notifications/utilities/notification.config.ts')
-rw-r--r--src/angular/notifications/utilities/notification.config.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/angular/notifications/utilities/notification.config.ts b/src/angular/notifications/utilities/notification.config.ts
index f469b7d..d10ce02 100644
--- a/src/angular/notifications/utilities/notification.config.ts
+++ b/src/angular/notifications/utilities/notification.config.ts
@@ -1,18 +1,18 @@
import { Type, ComponentRef } from '@angular/core';
export type NotificationType =
- "info" | "warn" | "error" | "success";
+ "info" | "warning" | "error" | "success";
export class NotificationSettings {
-
+
public type: NotificationType;
public notifyText: string;
public notifyTitle: string;
public sticky: boolean;
- public hasCustomContent :boolean;
- public duration:number;
+ public hasCustomContent: boolean;
+ public duration: number;
public innerComponentType: Type<any>;
- public innerComponentOptions : any;
+ public innerComponentOptions: any;
constructor(type: NotificationType, notifyText: string, notifyTitle: string, duration: number = 10000, sticky: boolean = false, hasCustomContent:boolean = false, innerComponentType?:Type<any>, innerComponentOptions? :any) {