@vleap/warps 3.0.0-alpha.48 → 3.0.0-alpha.49

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 CHANGED
@@ -472,7 +472,7 @@ declare const string: (value: string) => string;
472
472
  declare const u8: (value: number) => string;
473
473
  declare const u16: (value: number) => string;
474
474
  declare const u32: (value: number) => string;
475
- declare const u64: (value: bigint) => string;
475
+ declare const u64: (value: bigint | number) => string;
476
476
  declare const biguint: (value: bigint | string | number) => string;
477
477
  declare const boolean: (value: boolean) => string;
478
478
  declare const address: (value: string) => string;
package/dist/index.d.ts CHANGED
@@ -472,7 +472,7 @@ declare const string: (value: string) => string;
472
472
  declare const u8: (value: number) => string;
473
473
  declare const u16: (value: number) => string;
474
474
  declare const u32: (value: number) => string;
475
- declare const u64: (value: bigint) => string;
475
+ declare const u64: (value: bigint | number) => string;
476
476
  declare const biguint: (value: bigint | string | number) => string;
477
477
  declare const boolean: (value: boolean) => string;
478
478
  declare const address: (value: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vleap/warps",
3
- "version": "3.0.0-alpha.48",
3
+ "version": "3.0.0-alpha.49",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",