mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
14 lines
320 B
JavaScript
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; |