ados-rcm 1.1.534 → 1.1.536
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/AModule/AUtils/fileF.d.ts +3 -0
- package/dist/index.cjs.js +107 -107
- package/dist/index.es.js +7121 -7119
- package/package.json +1 -1
@@ -1,3 +1,4 @@
|
|
1
|
+
import { ExtendedFile } from '../AComponents/AFileUploder/AFileUploader';
|
1
2
|
/**
|
2
3
|
*
|
3
4
|
*/
|
@@ -8,11 +9,13 @@ declare function toBase64(file: File): Promise<string | undefined>;
|
|
8
9
|
* Description: Convert Base64 to File
|
9
10
|
*/
|
10
11
|
declare function toFile(base64Data: string, filename: string): File;
|
12
|
+
export declare const getFileKey: (file: ExtendedFile) => string;
|
11
13
|
/**
|
12
14
|
* fileF : File Functions
|
13
15
|
*/
|
14
16
|
export declare const fileF: {
|
15
17
|
toBase64: typeof toBase64;
|
16
18
|
toFile: typeof toFile;
|
19
|
+
getFileKey: (file: ExtendedFile) => string;
|
17
20
|
};
|
18
21
|
export {};
|