mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
import Text from './misc/Text';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class MusicResponsiveListItemFixedColumn extends YTNode {
|
|
static type = 'musicResponsiveListItemFlexColumnRenderer';
|
|
|
|
constructor(data) {
|
|
super();
|
|
this.title = new Text(data.text);
|
|
this.display_priority = data.displayPriority;
|
|
}
|
|
}
|
|
|
|
export default MusicResponsiveListItemFixedColumn; |