UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

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); }