downloading

This commit is contained in:
jxxghp
2023-07-02 17:53:13 +08:00
parent e6265eb801
commit 3db84fe9b9
5 changed files with 143 additions and 88 deletions

View File

@@ -154,3 +154,19 @@ export interface Site {
// 是否启用
is_active: boolean
}
// 正在下载
export interface DownloadingInfo {
hash?: string
title?: string
name?: string
year?: string
season_episode?: string
size?: number
progress?: number
state?: string
dlspeed?: string
upspeed?: string
media: {[key: string]: any}
}