mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-21 05:32: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>;
|
||
|
}
|