mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class TwoColumnSearchResults {
|
|
type = 'twoColumnSearchResultsRenderer';
|
|
|
|
constructor(data) {
|
|
this.primary_contents = Parser.parse(data.primaryContents);
|
|
this.secondary_contents = Parser.parse(data.secondaryContents);
|
|
}
|
|
}
|
|
|
|
module.exports = TwoColumnSearchResults; |