UNPKG

@duell10111/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

14 lines 397 B
import { YTNode } from '../helpers.js'; export default class VideoBadgeView extends YTNode { static type = 'VideoBadgeView'; label; icon_name; may_truncate_text; constructor(data) { super(); this.label = data.label; this.icon_name = data.iconName; this.may_truncate_text = data.mayTruncateText; } } //# sourceMappingURL=VideoBadgeView.js.map