mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 14:08:06 +00:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import { YTNode, type SuperParsedResult } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
|
|
export default class Tabbed extends YTNode {
|
|
static type = 'Tabbed';
|
|
|
|
contents: SuperParsedResult<YTNode>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.contents = Parser.parse(data);
|
|
}
|
|
} |