diff options
author | crupest <crupest@outlook.com> | 2021-02-20 22:45:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-20 22:45:07 +0800 |
commit | ad61f58644b3f0fac451dbc5b869471edcad0cf4 (patch) | |
tree | 8dd1cb3e15a3a8f4d90c0b57a028de08adfa2244 /FrontEnd/src/app/services/alert.ts | |
parent | a58ea3757f4749406274142b47e4d6d90ecf4015 (diff) | |
download | timeline-ad61f58644b3f0fac451dbc5b869471edcad0cf4.tar.gz timeline-ad61f58644b3f0fac451dbc5b869471edcad0cf4.tar.bz2 timeline-ad61f58644b3f0fac451dbc5b869471edcad0cf4.zip |
...
Diffstat (limited to 'FrontEnd/src/app/services/alert.ts')
-rw-r--r-- | FrontEnd/src/app/services/alert.ts | 4 |
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"; } |