UNPKG

113 BTypeScriptView Raw
1export interface Downloader<T> {
2 download(url: string, targetFilePath: string, options: T): Promise<void>;
3}