mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class ThumbnailOverlayPlaybackStatus {
|
|
type = 'ThumbnailOverlayPlaybackStatus';
|
|
|
|
constructor(data) {
|
|
this.text = data.texts.map((text) => new Text(text))[0].toString();
|
|
}
|
|
}
|
|
|
|
module.exports = ThumbnailOverlayPlaybackStatus; |