mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
refactor: improve live chat polling (#220)
* dev: add RemoveChatItemByAuthorAction renderer parser * dev: improve live chat polling
This commit is contained in:
14
src/parser/classes/livechat/RemoveChatItemByAuthorAction.ts
Normal file
14
src/parser/classes/livechat/RemoveChatItemByAuthorAction.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { YTNode } from '../../helpers';
|
||||
|
||||
class RemoveChatItemByAuthorAction extends YTNode {
|
||||
static type = 'RemoveChatItemByAuthorAction';
|
||||
|
||||
external_channel_id: string;
|
||||
|
||||
constructor(data: any) {
|
||||
super();
|
||||
this.external_channel_id = data.externalChannelId;
|
||||
}
|
||||
}
|
||||
|
||||
export default RemoveChatItemByAuthorAction;
|
||||
Reference in New Issue
Block a user