experimental multidownload implemented

This commit is contained in:
2022-01-27 15:32:31 +01:00
parent 9b0dc4d21b
commit 8c10868dd0
7 changed files with 199 additions and 97 deletions

View File

@@ -3,13 +3,20 @@ export interface IMessage {
progress?: string,
size?: string,
dlSpeed?: string
pid: number
}
export interface IDLInfo {
export interface IDLInfoBase {
title: string,
thumbnail: string,
upload_date?: string | Date,
duration?: number
resolution?: string
}
export interface IDLInfo {
pid: number,
info: IDLInfoBase
}
export interface IDLSpeed {