mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class ProfileColumnStatsEntry {
|
|
type = 'ProfileColumnStatsEntry';
|
|
|
|
constructor(data) {
|
|
this.label = new Text(data.label);
|
|
this.value = new Text(data.value);
|
|
}
|
|
}
|
|
|
|
module.exports = ProfileColumnStatsEntry; |