UNPKG

@antoniojps/youtubei.js

Version:

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

24 lines 800 B
import { YTNode } from '../helpers.js'; import { Parser } 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 = 'PlayerErrorMessage'; subreason; reason; proceed_button; thumbnails; icon_type; constructor(data) { super(); this.subreason = new Text(data.subreason); this.reason = new Text(data.reason); this.proceed_button = Parser.parseItem(data.proceedButton, Button); this.thumbnails = Thumbnail.fromResponse(data.thumbnail); if (Reflect.has(data, 'icon')) { this.icon_type = data.icon.iconType; } } } //# sourceMappingURL=PlayerErrorMessage.js.map