UNPKG

@np-dev/youtubei-js

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

18 lines (17 loc) 473 B
import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export interface StoryboardData { 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); }