mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
13 lines
293 B
JavaScript
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; |