@w3ux/utils 1.1.1-beta.3 → 1.1.1-beta.4
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/base.d.cts +1 -1
- package/base.d.ts +1 -1
- package/package.json +1 -1
package/base.d.cts
CHANGED
|
@@ -107,6 +107,6 @@ declare const minBigInt: (...values: bigint[]) => bigint;
|
|
|
107
107
|
* @param {...Partial<T>} sources - The source objects to merge into the destination.
|
|
108
108
|
* @returns {T} The updated destination object.
|
|
109
109
|
*/
|
|
110
|
-
declare function objectSpread<T extends object>(dest:
|
|
110
|
+
declare function objectSpread<T extends object>(dest: object, ...sources: (object | undefined | null)[]): T;
|
|
111
111
|
|
|
112
112
|
export { appendOr, appendOrEmpty, camelize, ellipsisFn, eqSet, formatAccountSs58, isSuperset, maxBigInt, minBigInt, minDecimalPlaces, objectSpread, pageFromUri, removeHexPrefix, rmCommas, shuffle, withTimeout };
|
package/base.d.ts
CHANGED
|
@@ -107,6 +107,6 @@ declare const minBigInt: (...values: bigint[]) => bigint;
|
|
|
107
107
|
* @param {...Partial<T>} sources - The source objects to merge into the destination.
|
|
108
108
|
* @returns {T} The updated destination object.
|
|
109
109
|
*/
|
|
110
|
-
declare function objectSpread<T extends object>(dest:
|
|
110
|
+
declare function objectSpread<T extends object>(dest: object, ...sources: (object | undefined | null)[]): T;
|
|
111
111
|
|
|
112
112
|
export { appendOr, appendOrEmpty, camelize, ellipsisFn, eqSet, formatAccountSs58, isSuperset, maxBigInt, minBigInt, minDecimalPlaces, objectSpread, pageFromUri, removeHexPrefix, rmCommas, shuffle, withTimeout };
|