mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 03:59:38 +00:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class LiveChatActionPanel {
|
|
type = 'LiveChatActionPanel';
|
|
|
|
constructor(data) {
|
|
this.id = data.id;
|
|
this.contents = Parser.parse(data.contents);
|
|
this.target_id = data.targetId;
|
|
}
|
|
}
|
|
|
|
module.exports = LiveChatActionPanel; |