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 406 B
import Text from './misc/Text.js'; import { YTNode } from '../helpers.js'; class ProfileColumnStatsEntry extends YTNode { constructor(data) { super(); this.label = new Text(data.label); this.value = new Text(data.value); } } ProfileColumnStatsEntry.type = 'ProfileColumnStatsEntry'; export default ProfileColumnStatsEntry; //# sourceMappingURL=ProfileColumnStatsEntry.js.map