mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-24 23:32:32 +00:00
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
import Parser from '../index';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class SingleColumnBrowseResults extends YTNode {
|
|
static type = 'SingleColumnBrowseResults';
|
|
|
|
constructor(data) {
|
|
super();
|
|
this.tabs = Parser.parse(data.tabs);
|
|
}
|
|
}
|
|
|
|
export default SingleColumnBrowseResults; |