Files
YouTube.js/lib/parser/contents/classes/livechat/RemoveBannerForLiveChatCommand.js
LuanRT 84d5edb6f0 refactor: rewrite OAuth and Requester (#90)
* chore: update type declarations

* dev: refactor oauth & requester

* chore: tidy things up

* chore: remove unneeded check
2022-07-04 16:34:02 -03:00

11 lines
224 B
JavaScript

'use strict';
class RemoveBannerForLiveChatCommand {
type = 'RemoveBannerForLiveChatCommand';
constructor(data) {
this.target_action_id = data.targetActionId;
}
}
module.exports = RemoveBannerForLiveChatCommand;