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