aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/common/alert-service.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-11 23:15:10 +0800
committercrupest <crupest@outlook.com>2020-06-11 23:15:10 +0800
commit532775219a11817cea0f5c44c9bbcc99d815a884 (patch)
tree7025158d81076aabd42bd864217bf3c07cca2128 /Timeline/ClientApp/src/app/common/alert-service.ts
parentcf6cfe87b46a2a3eb2913209092ab4c5639e75c3 (diff)
downloadtimeline-532775219a11817cea0f5c44c9bbcc99d815a884.tar.gz
timeline-532775219a11817cea0f5c44c9bbcc99d815a884.tar.bz2
timeline-532775219a11817cea0f5c44c9bbcc99d815a884.zip
feat(front): Application upgrade ui.
Diffstat (limited to 'Timeline/ClientApp/src/app/common/alert-service.ts')
-rw-r--r--Timeline/ClientApp/src/app/common/alert-service.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/common/alert-service.ts b/Timeline/ClientApp/src/app/common/alert-service.ts
index 6d3f8af8..79eecc82 100644
--- a/Timeline/ClientApp/src/app/common/alert-service.ts
+++ b/Timeline/ClientApp/src/app/common/alert-service.ts
@@ -1,8 +1,10 @@
+import React from 'react';
import pull from 'lodash/pull';
export interface AlertInfo {
type?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info';
- message: string;
+ message: string | React.FC<unknown> | { type: 'i18n'; key: string };
+ dismissTime?: number | 'never';
}
export interface AlertInfoEx extends AlertInfo {