Files
YouTube.js/src/parser/classes/SearchSuggestionsSection.js
2022-07-21 03:51:28 -03:00

13 lines
293 B
JavaScript

import Parser from '../index';
import { YTNode } from '../helpers';
class SearchSuggestionsSection extends YTNode {
static type = 'SearchSuggestionsSection';
constructor(data) {
super();
this.contents = Parser.parse(data.contents);
}
}
export default SearchSuggestionsSection;