adminforth 1.1.91 → 1.1.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/FrontendAPI.ts +2 -1
package/package.json
CHANGED
package/types/FrontendAPI.ts
CHANGED
|
@@ -87,13 +87,14 @@ export type AlertParams = {
|
|
|
87
87
|
* The message to display in the alert
|
|
88
88
|
*/
|
|
89
89
|
message?: string;
|
|
90
|
+
|
|
90
91
|
/**
|
|
91
92
|
* The variant of the alert
|
|
92
93
|
*/
|
|
93
94
|
variant?: AlertVariant | keyof typeof AlertVariant;
|
|
94
95
|
|
|
95
96
|
/**
|
|
96
|
-
* The timeout of the alert
|
|
97
|
+
* The timeout of the alert in seconds or 'unlimited' to keep the alert open until the user closes it
|
|
97
98
|
*/
|
|
98
99
|
timeout?: number | 'unlimited';
|
|
99
100
|
|