UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

19 lines (18 loc) 490 B
import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export interface StoryboardData { type: 'vod'; template_url: string; thumbnail_width: number; thumbnail_height: number; thumbnail_count: number; interval: number; columns: number; rows: number; storyboard_count: number; } export default class PlayerStoryboardSpec extends YTNode { static type: string; boards: StoryboardData[]; constructor(data: RawNode); }