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