mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
Things were getting a bit complicated and slow with the old parser so I decided to continue #44's work on the main codebase.
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
'use strict';
|
|
|
|
class ThumbnailOverlayResumePlayback {
|
|
type = 'thumbnailOverlayResumePlaybackRenderer';
|
|
|
|
constructor(data) {
|
|
this.percent_duration_watched = data.percentDurationWatched;
|
|
}
|
|
}
|
|
|
|
module.exports = ThumbnailOverlayResumePlayback; |