mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 03:59:38 +00:00
13 lines
244 B
JavaScript
13 lines
244 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class ShowLiveChatTooltipCommand {
|
|
type = 'ShowLiveChatTooltipCommand';
|
|
|
|
constructor(data) {
|
|
this.tooltip = Parser.parse(data.tooltip);
|
|
}
|
|
}
|
|
|
|
module.exports = ShowLiveChatTooltipCommand; |