Files
YouTube.js/lib/parser/contents/classes/livechat/UpdateLiveChatPollAction.js
LuanRT f924a39409 feat(parser): allow parser to find renderers by name
Now we can organize renderers in individual folders and fix the mess that `../contents/classes` is!
2022-07-11 02:47:58 -03:00

13 lines
250 B
JavaScript

'use strict';
const Parser = require('../..');
class UpdateLiveChatPollAction {
type = 'UpdateLiveChatPollAction';
constructor(data) {
this.poll_to_update = Parser.parse(data.pollToUpdate);
}
}
module.exports = UpdateLiveChatPollAction;