@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
15 lines (14 loc) • 484 B
TypeScript
import { YTNode } from '../../../helpers.js';
import type { RawNode } from '../../../index.js';
import NavigationEndpoint from '../../NavigationEndpoint.js';
import Author from '../../misc/Author.js';
import Text from '../../misc/Text.js';
export default class LiveChatMembershipItem extends YTNode {
static type: string;
id: string;
timestamp: number;
header_subtext: Text;
author: Author;
menu_endpoint: NavigationEndpoint;
constructor(data: RawNode);
}