monthly update

This commit is contained in:
2022-01-04 12:55:36 +01:00
parent 29d23144e7
commit aa79d8a0d0
18 changed files with 491 additions and 161 deletions

View File

@@ -0,0 +1,18 @@
export interface IMessage {
status: string,
progress?: string,
size?: string,
dlSpeed?: string
}
export interface IDLInfo {
title: string,
thumbnail: string,
upload_date?: string | Date,
duration?: number
}
export interface IDLSpeed {
effective: number,
unit: string,
}