mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class TwoColumnBrowseResults {
|
|
type = 'TwoColumnBrowseResults';
|
|
|
|
constructor(data) {
|
|
this.tabs = Parser.parse(data.tabs);
|
|
this.secondary_contents = Parser.parse(data.secondaryContents);
|
|
}
|
|
}
|
|
|
|
module.exports = TwoColumnBrowseResults; |