mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class PlaylistSidebarSecondaryInfo {
|
|
type = 'PlaylistSidebarSecondaryInfo';
|
|
|
|
constructor(data) {
|
|
this.owner = Parser.parse(data.videoOwner) || null;
|
|
this.button = Parser.parse(data.button) || null;
|
|
}
|
|
}
|
|
|
|
module.exports = PlaylistSidebarSecondaryInfo; |