chore: v5.0.0 release

This commit is contained in:
LuanRT
2023-04-29 05:15:47 +00:00
parent b19d687eed
commit 48dc99e28b
445 changed files with 4076 additions and 3578 deletions

View File

@@ -1,17 +1,15 @@
import Parser from '../index.ts';
import { YTNode } from '../helpers.ts';
import { type ObservedArray, YTNode } from '../helpers.ts';
class Endscreen extends YTNode {
export default class Endscreen extends YTNode {
static type = 'Endscreen';
elements;
start_ms: string; // Or number?
elements: ObservedArray<YTNode>;
start_ms: string;
constructor(data: any) {
super();
this.elements = Parser.parseArray(data.elements);
this.start_ms = data.startMs;
}
}
export default Endscreen;
}