Files
yt-dlp-webui/server/src/interfaces/IRecord.d.ts
2022-08-29 22:44:06 +02:00

14 lines
221 B
TypeScript

/**
* Represent a download db record
*/
export interface IRecord {
uid: string,
url: string,
title: string,
thumbnail: string,
created: Date,
size: string,
pid: number,
params: string,
}