mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
import Parser, { type RawNode } from '../index.ts';
|
|
import { YTNode } from '../helpers.ts';
|
|
|
|
export default class MetadataScreen extends YTNode {
|
|
static type = 'MetadataScreen';
|
|
|
|
section_list: YTNode;
|
|
|
|
constructor (data: RawNode) {
|
|
super();
|
|
this.section_list = Parser.parseItem(data);
|
|
}
|
|
} |