aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/services/alert.ts
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/app/services/alert.ts')
-rw-r--r--FrontEnd/src/app/services/alert.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/app/services/alert.ts b/FrontEnd/src/app/services/alert.ts
index b6d6be6e..48d482ea 100644
--- a/FrontEnd/src/app/services/alert.ts
+++ b/FrontEnd/src/app/services/alert.ts
@@ -1,10 +1,10 @@
import React from "react";
import pull from "lodash/pull";
-import { I18nText } from "@/common";
+import { BootstrapThemeColor, I18nText } from "@/common";
export interface AlertInfo {
- type?: "primary" | "secondary" | "success" | "danger" | "warning" | "info";
+ type?: BootstrapThemeColor;
message: React.FC<unknown> | I18nText;
dismissTime?: number | "never";
}