mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
These were broken due to recent changes in the parser — both should be fixed now. Note that `music#getRelated()` is still broken.
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
import Parser from '../index';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class Tabbed extends YTNode {
|
|
static type = 'Tabbed';
|
|
|
|
constructor(data) {
|
|
super();
|
|
this.contents = Parser.parse(data);
|
|
}
|
|
}
|
|
|
|
export default Tabbed; |