@liberfi.io/ui-tokens 3.0.15 → 3.0.16
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.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
package/dist/index.d.mts
CHANGED
|
@@ -58,8 +58,6 @@ type UsePulseNewListScriptParams = {
|
|
|
58
58
|
chain: Chain;
|
|
59
59
|
/** whether to pause adding new items (existing items still update) */
|
|
60
60
|
isPaused?: boolean;
|
|
61
|
-
/** refetch interval in milliseconds */
|
|
62
|
-
refetchInterval?: number;
|
|
63
61
|
};
|
|
64
62
|
type UsePulseNewListScriptResult = {
|
|
65
63
|
/** whether tokens are loading */
|
|
@@ -67,7 +65,7 @@ type UsePulseNewListScriptResult = {
|
|
|
67
65
|
/** token list */
|
|
68
66
|
tokens: Token[];
|
|
69
67
|
};
|
|
70
|
-
declare function usePulseNewListScript({ chain, isPaused,
|
|
68
|
+
declare function usePulseNewListScript({ chain, isPaused, }: UsePulseNewListScriptParams): UsePulseNewListScriptResult;
|
|
71
69
|
|
|
72
70
|
interface PulseNewListWidgetProps {
|
|
73
71
|
/** chain id */
|
package/dist/index.d.ts
CHANGED
|
@@ -58,8 +58,6 @@ type UsePulseNewListScriptParams = {
|
|
|
58
58
|
chain: Chain;
|
|
59
59
|
/** whether to pause adding new items (existing items still update) */
|
|
60
60
|
isPaused?: boolean;
|
|
61
|
-
/** refetch interval in milliseconds */
|
|
62
|
-
refetchInterval?: number;
|
|
63
61
|
};
|
|
64
62
|
type UsePulseNewListScriptResult = {
|
|
65
63
|
/** whether tokens are loading */
|
|
@@ -67,7 +65,7 @@ type UsePulseNewListScriptResult = {
|
|
|
67
65
|
/** token list */
|
|
68
66
|
tokens: Token[];
|
|
69
67
|
};
|
|
70
|
-
declare function usePulseNewListScript({ chain, isPaused,
|
|
68
|
+
declare function usePulseNewListScript({ chain, isPaused, }: UsePulseNewListScriptParams): UsePulseNewListScriptResult;
|
|
71
69
|
|
|
72
70
|
interface PulseNewListWidgetProps {
|
|
73
71
|
/** chain id */
|