youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
11 lines (10 loc) • 386 B
TypeScript
import { YoutubeRawData } from "../../common";
import { LiveVideo } from "./LiveVideo";
export declare class LiveVideoParser {
static loadLiveVideo(target: LiveVideo, data: YoutubeRawData): LiveVideo;
static parseChats(data: YoutubeRawData): YoutubeRawData[];
static parseContinuation(data: YoutubeRawData): {
continuation: string;
timeout: number;
};
}