mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-25 07:42:11 +00:00
refactor: migrate parsers to TS (#133)
* dev: finish top-level parsers TS migration
* dev: migrate menu renderers to TS
* chore: fix ts errors
* dev: finish ts migration 🎉
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { YTNode } from '../../helpers';
|
||||
|
||||
class RemoveBannerForLiveChatCommand extends YTNode {
|
||||
static type = 'RemoveBannerForLiveChatCommand';
|
||||
|
||||
target_action_id: string;
|
||||
|
||||
constructor(data: any) {
|
||||
super();
|
||||
this.target_action_id = data.targetActionId;
|
||||
}
|
||||
}
|
||||
|
||||
export default RemoveBannerForLiveChatCommand;
|
||||
Reference in New Issue
Block a user