UNPKG

@np-dev/youtubei-js

Version:

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

11 lines 317 B
import { YTNode } from '../helpers.js'; import NavigationEndpoint from './NavigationEndpoint.js'; class Command extends YTNode { constructor(data) { super(); this.endpoint = new NavigationEndpoint(data); } } Command.type = 'Command'; export default Command; //# sourceMappingURL=Command.js.map