Files
yt-dlp-webui/server/src/interfaces/IPayload.d.ts

13 lines
241 B
TypeScript

/**
* Represent a download payload sent by the frontend
*/
export interface IPayload {
url: string
params: Array<string> | string
path: string
title?: string
thumbnail?: string
size?: string
renameTo?: string
}