mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class OpenPopupAction {
|
|
type = 'OpenPopupAction';
|
|
|
|
constructor(data) {
|
|
this.popup = Parser.parse(data.popup);
|
|
this.popup_type = data.popupType;
|
|
}
|
|
}
|
|
|
|
module.exports = OpenPopupAction; |