mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 00:43:04 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
declare class Downloader {
|
|
static create(): Downloader;
|
|
private constructor();
|
|
download(downloadUrl: string, savedPath: string): Promise<void>;
|
|
}
|
|
export default Downloader;
|