@antoniojps/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
13 lines • 390 B
JavaScript
import Text from './misc/Text.js';
import { YTNode } from '../helpers.js';
export default class ProfileColumnStatsEntry extends YTNode {
static type = 'ProfileColumnStatsEntry';
label;
value;
constructor(data) {
super();
this.label = new Text(data.label);
this.value = new Text(data.value);
}
}
//# sourceMappingURL=ProfileColumnStatsEntry.js.map