downloader.d.ts 185 B

123456
  1. declare class Downloader {
  2. static create(): Downloader;
  3. private constructor();
  4. download(downloadUrl: string, savedPath: string): Promise<void>;
  5. }
  6. export default Downloader;