mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-03 09:35:05 +00:00
feat(ytmusic): add support for retrieving albums
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
const Text = require('./Text');
|
||||
|
||||
class MusicResponsiveListItemFixedColumn {
|
||||
type = 'musicResponsiveListItemFlexColumnRenderer';
|
||||
|
||||
constructor(data) {
|
||||
this.title = new Text(data.text);
|
||||
this.display_priority = data.displayPriority;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = MusicResponsiveListItemFixedColumn;
|
||||
Reference in New Issue
Block a user