innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines • 386 B
JavaScript
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