UNPKG

yt-dlx

Version:

Effortless Audio-Video Downloader And Streamer!

41 lines 1.61 kB
import { z } from "zod"; import { Readable } from "stream"; declare const ZodSchema: z.ZodObject<{ query: z.ZodString; output: z.ZodOptional<z.ZodString>; useTor: z.ZodOptional<z.ZodBoolean>; stream: z.ZodOptional<z.ZodBoolean>; verbose: z.ZodOptional<z.ZodBoolean>; metadata: z.ZodOptional<z.ZodBoolean>; showProgress: z.ZodOptional<z.ZodBoolean>; filter: z.ZodOptional<z.ZodEnum<["invert", "rotate90", "rotate270", "grayscale", "rotate180", "flipVertical", "flipHorizontal"]>>; }, "strip", z.ZodTypeAny, { query: string; useTor?: boolean | undefined; verbose?: boolean | undefined; output?: string | undefined; stream?: boolean | undefined; metadata?: boolean | undefined; showProgress?: boolean | undefined; filter?: "invert" | "rotate90" | "rotate270" | "grayscale" | "rotate180" | "flipVertical" | "flipHorizontal" | undefined; }, { query: string; useTor?: boolean | undefined; verbose?: boolean | undefined; output?: string | undefined; stream?: boolean | undefined; metadata?: boolean | undefined; showProgress?: boolean | undefined; filter?: "invert" | "rotate90" | "rotate270" | "grayscale" | "rotate180" | "flipVertical" | "flipHorizontal" | undefined; }>; type VideoLowestOptions = z.infer<typeof ZodSchema>; export default function VideoLowest({ query, output, useTor, stream, filter, metadata, verbose, showProgress, }: VideoLowestOptions): Promise<{ metadata: object; } | { outputPath: string; } | { stream: Readable; filename: string; }>; export {}; //# sourceMappingURL=Lowest.d.ts.map