mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-14 18:12:10 +00:00
14 lines
329 B
TypeScript
14 lines
329 B
TypeScript
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);
|
|
}
|
|
} |