mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-20 05:02:42 +08:00
4 lines
113 B
TypeScript
4 lines
113 B
TypeScript
export interface Downloader<T> {
|
|
download(url: string, targetFilePath: string, options: T): Promise<void>;
|
|
}
|