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