@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
12 lines (11 loc) • 368 B
TypeScript
import { YTNode, type ObservedArray } from '../helpers.js';
import { type RawNode } from '../index.js';
import Text from './misc/Text.js';
export default class UniversalWatchCard extends YTNode {
static type: string;
header: YTNode;
call_to_action: YTNode;
sections: ObservedArray<YTNode>;
collapsed_label?: Text;
constructor(data: RawNode);
}