mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 20:12:12 +00:00
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; |