mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-25 15:52:13 +00:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
import Parser from '../../index';
|
|
|
|
import { YTNode } from '../../helpers';
|
|
|
|
class AddChatItemAction extends YTNode {
|
|
static type = 'AddChatItemAction';
|
|
constructor(data) {
|
|
super();
|
|
this.item = Parser.parseItem(data.item);
|
|
this.client_id = data.clientId || null;
|
|
}
|
|
}
|
|
export default AddChatItemAction;
|