UNPKG

@np-dev/youtubei-js

Version:

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

13 lines 462 B
import Thumbnail from './misc/Thumbnail.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; class BackstageImage extends YTNode { constructor(data) { super(); this.image = Thumbnail.fromResponse(data.image); this.endpoint = new NavigationEndpoint(data.command); } } BackstageImage.type = 'BackstageImage'; export default BackstageImage; //# sourceMappingURL=BackstageImage.js.map