UNPKG

@np-dev/youtubei-js

Version:

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

17 lines (16 loc) 488 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import YpcTrailer from './YpcTrailer.js'; export default class PlayerLegacyDesktopYpcTrailer extends YTNode { static type: string; video_id: string; title: string; thumbnail: string; offer_headline: string; offer_description: string; offer_id: string; offer_button_text: string; video_message: string; trailer: YpcTrailer | null; constructor(data: RawNode); }