interface DownloaderInterface {
    downloadTo(source: string, destination: string): Promise<void>;
}

Implemented by

Methods

Methods

  • Parameters

    • source: string
    • destination: string

    Returns Promise<void>