mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
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; |