feat(parser): add MusicCardShelf (#358)

This commit is contained in:
LuanRT
2023-03-14 20:16:31 -03:00
committed by GitHub
parent a8e7e644ec
commit 9b005d62d6
4 changed files with 72 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
import { YTNode } from '../helpers.js';
import { RawNode } from '../index.js';
import Text from './misc/Text.js';
export default class MusicCardShelfHeaderBasic extends YTNode {
static type = 'MusicCardShelfHeaderBasic';
title: Text;
constructor(data: RawNode) {
super();
this.title = new Text(data.title);
}
}