mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 20:12:12 +00:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class MusicDescriptionShelf {
|
|
type = 'musicDescriptionShelfRenderer';
|
|
|
|
constructor(data) {
|
|
this.description = new Text(data.description);
|
|
this.max_collapsed_lines = data.maxCollapsedLines || null;
|
|
this.max_expanded_lines = data.maxExpandedLines || null;
|
|
this.footer = new Text(data.footer);
|
|
}
|
|
}
|
|
|
|
module.exports = MusicDescriptionShelf; |