yt-dlx
Version:
Effortless Audio-Video Downloader And Streamer!
23 lines • 666 B
TypeScript
import { z } from "zod";
declare const ZodSchema: z.ZodObject<{
videoId: z.ZodString;
verbose: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
videoId: string;
verbose?: boolean | undefined;
}, {
videoId: string;
verbose?: boolean | undefined;
}>;
export interface RelatedVideosType {
id: string;
title: string;
isLive: boolean;
duration: number;
uploadDate: string;
thumbnails: string[];
}
type RelatedVideosOptions = z.infer<typeof ZodSchema>;
export default function relatedVideosFn({ videoId, verbose }: RelatedVideosOptions): Promise<RelatedVideosType[]>;
export {};
//# sourceMappingURL=Related.d.ts.map