mirror of
https://github.com/alexta69/metube.git
synced 2026-06-15 16:20:06 +00:00
23 lines
407 B
TypeScript
23 lines
407 B
TypeScript
|
|
export interface Download {
|
|
id: string;
|
|
title: string;
|
|
url: string;
|
|
quality: string;
|
|
format: string;
|
|
folder: string;
|
|
custom_name_prefix: string;
|
|
playlist_strict_mode: boolean;
|
|
playlist_item_limit: number;
|
|
status: string;
|
|
msg: string;
|
|
percent: number;
|
|
speed: number;
|
|
eta: number;
|
|
filename: string;
|
|
checked: boolean;
|
|
size?: number;
|
|
error?: string;
|
|
deleting?: boolean;
|
|
}
|