mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class SearchSuggestionsSection {
|
|
type = 'SearchSuggestionsSection';
|
|
|
|
constructor(data) {
|
|
this.contents = Parser.parse(data.contents);
|
|
}
|
|
}
|
|
|
|
module.exports = SearchSuggestionsSection; |