@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
9 lines (8 loc) • 305 B
TypeScript
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import LiveChatBanner from './items/LiveChatBanner.js';
export default class AddBannerToLiveChatCommand extends YTNode {
static type: string;
banner: LiveChatBanner | null;
constructor(data: RawNode);
}