UNPKG

@imput/youtubei.js

Version:

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

11 lines 386 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; class SearchSuggestionsSection extends YTNode { constructor(data) { super(); this.contents = Parser.parseArray(data.contents); } } SearchSuggestionsSection.type = 'SearchSuggestionsSection'; export default SearchSuggestionsSection; //# sourceMappingURL=SearchSuggestionsSection.js.map