demio-ui 2.5.67 → 2.5.68
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.
|
@@ -8,9 +8,9 @@ declare class ToastManager {
|
|
|
8
8
|
remove: (id: number) => void;
|
|
9
9
|
private getUIToastListAmount;
|
|
10
10
|
private add;
|
|
11
|
-
info: (options: IToast) => void
|
|
12
|
-
success: (options: IToast) => void
|
|
13
|
-
error: (options: IToast) => void
|
|
11
|
+
info: (options: IToast) => Promise<void>;
|
|
12
|
+
success: (options: IToast) => Promise<void>;
|
|
13
|
+
error: (options: IToast) => Promise<void>;
|
|
14
14
|
}
|
|
15
15
|
export declare const toast: ToastManager;
|
|
16
16
|
export {};
|
package/dist/types.d.ts
CHANGED
|
@@ -2426,9 +2426,9 @@ declare class ToastManager {
|
|
|
2426
2426
|
remove: (id: number) => void;
|
|
2427
2427
|
private getUIToastListAmount;
|
|
2428
2428
|
private add;
|
|
2429
|
-
info: (options: IToast) => void
|
|
2430
|
-
success: (options: IToast) => void
|
|
2431
|
-
error: (options: IToast) => void
|
|
2429
|
+
info: (options: IToast) => Promise<void>;
|
|
2430
|
+
success: (options: IToast) => Promise<void>;
|
|
2431
|
+
error: (options: IToast) => Promise<void>;
|
|
2432
2432
|
}
|
|
2433
2433
|
declare const toast: ToastManager;
|
|
2434
2434
|
|