ados-rcm 1.0.579 → 1.0.581
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AUtils/fileF.d.ts +10 -0
- package/dist/index.cjs.js +10 -10
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +175 -166
- package/package.json +1 -1
@@ -1,8 +1,18 @@
|
|
1
|
+
/**
|
2
|
+
*
|
3
|
+
*/
|
1
4
|
declare function toBase64(file: File): Promise<string | undefined>;
|
5
|
+
/**
|
6
|
+
* toFile : Convert Base64 to File
|
7
|
+
*
|
8
|
+
* Description: Convert Base64 to File
|
9
|
+
*/
|
10
|
+
declare function toFile(base64Data: string, filename: string): File;
|
2
11
|
/**
|
3
12
|
* fileF : File Functions
|
4
13
|
*/
|
5
14
|
export declare const fileF: {
|
6
15
|
toBase64: typeof toBase64;
|
16
|
+
toFile: typeof toFile;
|
7
17
|
};
|
8
18
|
export {};
|