mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import type { RawNode } from '../index.js';
|
|
|
|
export default class ThumbnailOverlayResumePlayback extends YTNode {
|
|
static type = 'ThumbnailOverlayResumePlayback';
|
|
|
|
percent_duration_watched: number;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.percent_duration_watched = data.percentDurationWatched;
|
|
}
|
|
}
|