mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class ThumbnailOverlayInlineUnplayable {
|
|
type = 'ThumbnailOverlayInlineUnplayable';
|
|
|
|
constructor(data) {
|
|
this.text = new Text(data.text).toString();
|
|
this.icon_type = data.icon.iconType;
|
|
}
|
|
}
|
|
|
|
module.exports = ThumbnailOverlayInlineUnplayable; |