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,16 @@
import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
class PlaylistMetadata extends YTNode {
export default class PlaylistMetadata extends YTNode {
static type = 'PlaylistMetadata';
title: string;
description: string;
constructor(data: any) {
constructor(data: RawNode) {
super();
this.title = data.title;
this.description = data.description || null;
// XXX: Appindexing should be in microformat
// XXX: Appindexing should be in microformat.
}
}
export default PlaylistMetadata;
}