youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
9 lines (8 loc) • 373 B
TypeScript
import { YoutubeRawData } from "../../common";
import { Comment } from "../Comment";
import { Video } from "./Video";
export declare class VideoParser {
static loadVideo(target: Video, data: YoutubeRawData): Video;
static parseComments(data: YoutubeRawData, video: Video): Comment[];
static parseCommentContinuation(data: YoutubeRawData): string | undefined;
}