Files
YouTube.js/lib/parser/contents/classes/SecondarySearchContainer.js

13 lines
239 B
JavaScript

'use strict';
const Parser = require('..');
class SecondarySearchContainer {
type = 'SecondarySearchContainer';
constructor(data) {
this.contents = Parser.parse(data.contents);
}
}
module.exports = SecondarySearchContainer;