UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

12 lines 466 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; import UniversalWatchCard from './UniversalWatchCard.js'; class SecondarySearchContainer extends YTNode { constructor(data) { super(); this.contents = Parser.parseArray(data.contents, [UniversalWatchCard]); } } SecondarySearchContainer.type = 'SecondarySearchContainer'; export default SecondarySearchContainer; //# sourceMappingURL=SecondarySearchContainer.js.map