Files
YouTube.js/src/parser/classes/Tabbed.js
LuanRT 4d332402db fix(ytmusic): fix music#getLyrics() & music#getUpNext()
These were broken due to recent changes in the parser — both should be fixed now. Note that `music#getRelated()` is still broken.
2022-07-30 05:37:23 -03:00

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;