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