mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class ChipCloud {
|
|
type = 'ChipCloud';
|
|
|
|
constructor(data) {
|
|
this.chips = Parser.parse(data.chips);
|
|
this.next_button = Parser.parse(data.nextButton);
|
|
this.previous_button = Parser.parse(data.previousButton);
|
|
this.horizontal_scrollable = data.horizontalScrollable;
|
|
}
|
|
}
|
|
|
|
module.exports = ChipCloud; |