innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
14 lines • 447 B
JavaScript
import { Parser } from '../../index.js';
import { YTNode } from '../../helpers.js';
class AddChatItemAction extends YTNode {
constructor(data) {
super();
this.item = Parser.parseItem(data.item);
if (Reflect.has(data, 'clientId')) {
this.client_id = data.clientId;
}
}
}
AddChatItemAction.type = 'AddChatItemAction';
export default AddChatItemAction;
//# sourceMappingURL=AddChatItemAction.js.map