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.
@@ -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 {};