Files
YouTube.js/lib/parser/contents/classes/livechat/ShowLiveChatActionPanelAction.js
LuanRT f924a39409 feat(parser): allow parser to find renderers by name
Now we can organize renderers in individual folders and fix the mess that `../contents/classes` is!
2022-07-11 02:47:58 -03:00

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;