mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class AddBannerToLiveChatCommand {
|
|
constructor(data) {
|
|
return Parser.parse(data.bannerRenderer);
|
|
}
|
|
}
|
|
|
|
module.exports = AddBannerToLiveChatCommand; |