UNPKG

@np-dev/youtubei-js

Version:

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

12 lines 336 B
import Text from '../misc/Text.js'; import { YTNode } from '../../helpers.js'; class StatRow extends YTNode { constructor(data) { super(); this.title = new Text(data.title); this.contents = new Text(data.contents); } } StatRow.type = 'StatRow'; export default StatRow; //# sourceMappingURL=StatRow.js.map