mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class ChannelMobileHeader {
|
|
constructor(data) {
|
|
this.title = new Text(data.title);
|
|
}
|
|
}
|
|
|
|
module.exports = ChannelMobileHeader; |