mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
'use strict';
|
|
|
|
const Thumbnail = require('./Thumbnail');
|
|
|
|
class SingleHeroImage {
|
|
type = 'SingleHeroImage';
|
|
|
|
constructor(data) {
|
|
this.thumbnails = new Thumbnail(data.thumbnail).thumbnails;
|
|
this.style = data.style;
|
|
}
|
|
}
|
|
|
|
module.exports = SingleHeroImage; |