mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 00:02:09 +00:00
chore: clean up build steps
This commit is contained in:
13
src/parser/classes/livechat/AddChatItemAction.js
Normal file
13
src/parser/classes/livechat/AddChatItemAction.js
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user