Files
aidio-description/dist/server/services/ytDlp.d.ts

9 lines
325 B
TypeScript
Raw Normal View History

export interface YtDlpResult {
filePath: string;
filename: string;
title: string;
}
2026-05-15 04:10:06 +02:00
export type YtDlpProgress = (percent: number) => void;
export declare function isYtDlpAvailable(): boolean;
2026-05-15 04:10:06 +02:00
export declare function downloadVideo(url: string, outputDir: string, onProgress?: YtDlpProgress): Promise<YtDlpResult>;