yt-dlx
Version:
Effortless Audio-Video Downloader And Streamer!
50 lines • 1.8 kB
TypeScript
import help from "./routes/command/help";
import extract from "./routes/command/extract";
import list_formats from "./routes/command/list_formats";
import video_data from "./routes/command/video_data";
import search_videos from "./routes/command/search_videos";
import playlist_data from "./routes/command/playlist_data";
import search_playlists from "./routes/command/search_playlists";
import AudioLowest from "./routes/Audio/AudioLowest";
import AudioHighest from "./routes/Audio/AudioHighest";
import AudioCustom from "./routes/Audio/AudioCustom";
import VideoLowest from "./routes/Video/VideoLowest";
import VideoHighest from "./routes/Video/VideoHighest";
import VideoCustom from "./routes/Video/VideoCustom";
import AudioVideoHighest from "./routes/AudioVideo/AudioVideoHighest";
import AudioVideoLowest from "./routes/AudioVideo/AudioVideoLowest";
import AudioVideoCustom from "./routes/AudioVideo/AudioVideoCustom";
declare var ytdlx: {
ytSearch: {
Video: {
Single: typeof video_data;
Multiple: typeof search_videos;
};
Playlist: {
Single: typeof playlist_data;
Multiple: typeof search_playlists;
};
};
info: {
help: typeof help;
extract: typeof extract;
list_formats: typeof list_formats;
};
AudioOnly: {
Lowest: typeof AudioLowest;
Highest: typeof AudioHighest;
Custom: typeof AudioCustom;
};
VideoOnly: {
Lowest: typeof VideoLowest;
Highest: typeof VideoHighest;
Custom: typeof VideoCustom;
};
AudioVideo: {
Lowest: typeof AudioVideoLowest;
Highest: typeof AudioVideoHighest;
Custom: typeof AudioVideoCustom;
};
};
export default ytdlx;
//# sourceMappingURL=index.d.ts.map