mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import type { RawNode } from '../types/index.js';
|
|
import Thumbnail from './misc/Thumbnail.js';
|
|
|
|
export default class AnimatedThumbnailOverlayView extends YTNode {
|
|
static type = 'AnimatedThumbnailOverlayView';
|
|
|
|
public thumbnail: Thumbnail[];
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.thumbnail = Thumbnail.fromResponse(data.thumbnail);
|
|
}
|
|
}
|