@thecb/components 9.2.0-beta.8 → 9.2.0-beta.9
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/dist/index.d.ts
CHANGED
|
@@ -380,9 +380,9 @@ interface UseToastResult {
|
|
|
380
380
|
hideToast: () => void;
|
|
381
381
|
}
|
|
382
382
|
|
|
383
|
-
declare function useToastNotification(
|
|
384
|
-
|
|
385
|
-
|
|
383
|
+
declare function useToastNotification(
|
|
384
|
+
props: UseToastProps
|
|
385
|
+
): UseToastResult;
|
|
386
386
|
|
|
387
387
|
|
|
388
388
|
|
package/package.json
CHANGED
|
@@ -18,6 +18,6 @@ export interface UseToastResult {
|
|
|
18
18
|
hideToast: () => void;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
export default function useToastNotification(
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
export default function useToastNotification(
|
|
22
|
+
props: UseToastProps
|
|
23
|
+
): UseToastResult;
|