mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
'use strict';
|
|
|
|
class MetadataBadge {
|
|
constructor(data) {
|
|
data.icon &&
|
|
(this.icon_type = data.icon.iconType);
|
|
|
|
data.style &&
|
|
(this.style = data.style);
|
|
|
|
this.tooltip = data.tooltip || data.iconTooltip || null;
|
|
}
|
|
}
|
|
|
|
module.exports = MetadataBadge; |