fileUtils.d.ts 333 B

12345
  1. export declare const generateMD5: (filePath: string) => Promise<string>;
  2. export declare const verifyMD5: (filePath: string, expectedMD5: string) => Promise<boolean>;
  3. export declare const getFileSize: (filePath: string) => number;
  4. export declare const deleteFile: (filePath: string) => boolean;
  5. //# sourceMappingURL=fileUtils.d.ts.map