Files
YouTube.js/src/parser/classes/MusicCardShelfHeaderBasic.ts
2023-03-14 20:16:31 -03:00

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);
}
}