8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
|
|
export interface YtDlpResult {
|
||
|
|
filePath: string;
|
||
|
|
filename: string;
|
||
|
|
title: string;
|
||
|
|
}
|
||
|
|
export declare function isYtDlpAvailable(): boolean;
|
||
|
|
export declare function downloadVideo(url: string, outputDir: string): YtDlpResult;
|