mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
'use strict';
|
|
|
|
class MusicInlineBadge {
|
|
type = 'MusicInlineBadge';
|
|
|
|
constructor(data) {
|
|
this.icon_type = data.icon.iconType;
|
|
this.label = data.accessibilityData.accessibilityData.label;
|
|
}
|
|
}
|
|
|
|
module.exports = MusicInlineBadge; |