This commit is contained in:
jxxghp
2023-07-10 19:18:38 +08:00
parent 48ddbaec2f
commit 1ea1af1f7e
2 changed files with 37 additions and 8 deletions

View File

@@ -481,3 +481,15 @@ export interface DownloaderInfo {
// 剩余空间
free_space:number
}
// 定时服务信息
export interface ScheduleInfo {
// ID
id: string
// 名称
name: string
// 状态
status: string
// 下次运行时间
next_run: string
}