@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
12 lines • 368 B
JavaScript
import { YTNode } from '../helpers.js';
class VideoBadgeView extends YTNode {
constructor(data) {
super();
this.label = data.label;
this.icon_name = data.iconName;
this.may_truncate_text = data.mayTruncateText;
}
}
VideoBadgeView.type = 'VideoBadgeView';
export default VideoBadgeView;
//# sourceMappingURL=VideoBadgeView.js.map