@steepleinc/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
12 lines (11 loc) • 443 B
TypeScript
import { YTNode } from '../../../helpers.js';
import { type RawNode } from '../../../index.js';
import LiveChatSponsorshipsHeader from './LiveChatSponsorshipsHeader.js';
export default class LiveChatSponsorshipsGiftPurchaseAnnouncement extends YTNode {
static type: string;
id: string;
timestamp_usec: string;
author_external_channel_id: string;
header: LiveChatSponsorshipsHeader | null;
constructor(data: RawNode);
}