@sushibtw/youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
6 lines (5 loc) • 354 B
TypeScript
import { YoutubeRawData } from "./types";
export declare const getDuration: (s: string) => number;
export declare const getQueryParameter: (url: string, queryName: string) => string;
export declare const stripToInt: (string: string) => number | null;
export declare const getContinuationFromContents: (data: YoutubeRawData[]) => string | undefined;