Files
YouTube.js/src/parser/classes/ProfileColumnStatsEntry.js
2022-07-21 03:51:28 -03:00

14 lines
320 B
JavaScript

import Text from './misc/Text';
import { YTNode } from '../helpers';
class ProfileColumnStatsEntry extends YTNode {
static type = 'ProfileColumnStatsEntry';
constructor(data) {
super();
this.label = new Text(data.label);
this.value = new Text(data.value);
}
}
export default ProfileColumnStatsEntry;