@v1nt1248/3nclient-lib 0.2.26 → 0.2.28

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.
@@ -4888,5 +4888,5 @@ export {
4888
4888
  $C as sleep,
4889
4889
  EE as transformFileToWeb3NFile,
4890
4890
  iE as transformWeb3nFileToFile,
4891
- tE as uint8ToBase64
4891
+ tE as uint8ToDataURL
4892
4892
  };
@@ -0,0 +1 @@
1
+ export declare function uint8ToDataURL(inputData: Uint8Array, type?: string): string;
@@ -21,7 +21,7 @@ export * from './files/is-file-image';
21
21
  export * from './files/is-file-video';
22
22
  export * from './files/blob-to-b64';
23
23
  export * from './files/b64-to-blob';
24
- export * from './files/uint8-to-b64';
24
+ export * from './files/uint8-to-data-url';
25
25
  export * from './files/resize-image';
26
26
  export * from './files/file-to-uint8array';
27
27
  export * from './files/create-video-thumbnail';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@v1nt1248/3nclient-lib",
3
3
  "license": "AGPL-3.0-or-later",
4
4
  "author": "v1nt1248",
5
- "version": "0.2.26",
5
+ "version": "0.2.28",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -1 +0,0 @@
1
- export declare function uint8ToBase64(inputData: Uint8Array, type?: string): string;