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