UNPKG

@imput/youtubei.js

Version:

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

15 lines 439 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; class ProfileColumnStats extends YTNode { constructor(data) { super(); this.items = Parser.parseArray(data.items); } // XXX: Alias for consistency. get contents() { return this.items; } } ProfileColumnStats.type = 'ProfileColumnStats'; export default ProfileColumnStats; //# sourceMappingURL=ProfileColumnStats.js.map