yt-dlx
Version:
Effortless Audio-Video Downloader And Streamer!
12 lines • 318 B
TypeScript
export interface relatedVideosType {
id: string;
title: string;
isLive: boolean;
duration: number;
uploadDate: string;
thumbnails: string[];
}
export default function relatedVideos({ videoId }: {
videoId: string;
}): Promise<relatedVideosType[]>;
//# sourceMappingURL=relatedVideos.d.ts.map