mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-25 07:42:11 +00:00
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
class MusicInlineBadge {
|
|
type = 'musicInlineBadgeRenderer';
|
|
|
|
constructor(data) {
|
|
this.icon_type = data.icon.iconType;
|
|
this.label = data.accessibilityData.accessibilityData.label;
|
|
}
|
|
}
|
|
|
|
module.exports = MusicInlineBadge; |