@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
16 lines (15 loc) • 419 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export interface LiveStoryboardData {
type: 'live';
template_url: string;
thumbnail_width: number;
thumbnail_height: number;
columns: number;
rows: number;
}
export default class PlayerLiveStoryboardSpec extends YTNode {
static type: string;
board: LiveStoryboardData;
constructor(data: RawNode);
}