feat(VideoInfo): add game_info and category (#333)

This commit is contained in:
Nico K
2023-03-03 07:47:20 +01:00
committed by GitHub
parent ce53ac1843
commit 214aa147ce
4 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import Parser from '../index.js';
import { YTNode } from '../helpers.js';
class RichMetadataRow extends YTNode {
static type = 'RichMetadataRow';
contents;
constructor(data: any) {
super();
this.contents = Parser.parseArray(data.contents);
}
}
export default RichMetadataRow;