mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
'use strict';
|
|
|
|
class ThumbnailOverlayResumePlayback {
|
|
type = 'ThumbnailOverlayResumePlayback';
|
|
|
|
constructor(data) {
|
|
this.percent_duration_watched = data.percentDurationWatched;
|
|
}
|
|
}
|
|
|
|
module.exports = ThumbnailOverlayResumePlayback; |