UNPKG

@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) 467 B
import { YTNode } from '../../../helpers.js'; import type { RawNode } from '../../../index.js'; import LiveChatBannerHeader from './LiveChatBannerHeader.js'; export default class LiveChatBanner extends YTNode { static type: string; header: LiveChatBannerHeader | null; contents: YTNode; action_id: string; viewer_is_creator: boolean; target_id: string; is_stackable: boolean; background_type: string; constructor(data: RawNode); }