1234567891011121314151617 |
- export interface LocalFileExistParams {
- params: {
- url: string;
- }[];
- }
- export interface LocalFileExistResult {
- url: string;
- path: string;
- isExist: boolean;
- }
- declare function isDownloadFileExist(args: LocalFileExistParams): Promise<LocalFileExistResult[]>;
- declare namespace isDownloadFileExist {
- var version: {
- pc: string;
- };
- }
- export default isDownloadFileExist;
|