mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-03 17:38:23 +00:00
Now we can organize renderers in individual folders and fix the mess that `../contents/classes` is!
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class ShowLiveChatActionPanelAction {
|
|
type = 'ShowLiveChatActionPanelAction';
|
|
|
|
constructor(data) {
|
|
this.panel_to_show = Parser.parse(data.panelToShow);
|
|
}
|
|
}
|
|
|
|
module.exports = ShowLiveChatActionPanelAction; |