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) • 375 B
TypeScript
import { YoutubeRawData } from "../../common";
import { Reply } from "../Reply";
import { Comment } from "./Comment";
export declare class CommentParser {
static loadComment(target: Comment, data: YoutubeRawData): Comment;
static parseContinuation(data: YoutubeRawData): string | undefined;
static parseReplies(data: YoutubeRawData, comment: Comment): Reply[];
}