UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

18 lines (17 loc) 600 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; banner_type: string; banner_properties_is_ephemeral?: boolean; banner_properties_auto_collapse_delay_seconds?: string; constructor(data: RawNode); }