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