@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
10 lines (9 loc) • 307 B
TypeScript
import { YTNode } from '../../../helpers.js';
import Text from '../../misc/Text.js';
import type { RawNode } from '../../../index.js';
export default class LiveChatRestrictedParticipation extends YTNode {
static type: string;
message: Text;
icon_type?: string;
constructor(data: RawNode);
}