@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.
Files changed (3) hide show
  1. package/base.d.cts +1 -1
  2. package/base.d.ts +1 -1
  3. 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: T, ...sources: (object | undefined | null)[]): T;
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: T, ...sources: (object | undefined | null)[]): T;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w3ux/utils",
3
- "version": "1.1.1-beta.3",
3
+ "version": "1.1.1-beta.4",
4
4
  "license": "GPL-3.0-only",
5
5
  "dependencies": {
6
6
  "@polkadot-api/substrate-bindings": "^0.9.3"