UNPKG

innertuber-rn

Version:

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

15 lines (14 loc) 441 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import Button from './Button.js'; import Text from './misc/Text.js'; import Thumbnail from './misc/Thumbnail.js'; export default class PlayerErrorMessage extends YTNode { static type: string; subreason: Text; reason: Text; proceed_button: Button | null; thumbnails: Thumbnail[]; icon_type?: string; constructor(data: RawNode); }