mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-20 13:12:41 +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>;
|
||
|
}
|