mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
* chore: update type declarations * dev: refactor oauth & requester * chore: tidy things up * chore: remove unneeded check
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
'use strict';
|
|
|
|
class RemoveBannerForLiveChatCommand {
|
|
type = 'RemoveBannerForLiveChatCommand';
|
|
|
|
constructor(data) {
|
|
this.target_action_id = data.targetActionId;
|
|
}
|
|
}
|
|
|
|
module.exports = RemoveBannerForLiveChatCommand; |