@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
11 lines • 359 B
JavaScript
import { Parser } from '../../index.js';
import { YTNode } from '../../helpers.js';
export default class ShowLiveChatDialogAction extends YTNode {
static type = 'ShowLiveChatDialogAction';
dialog;
constructor(data) {
super();
this.dialog = Parser.parseItem(data.dialog);
}
}
//# sourceMappingURL=ShowLiveChatDialogAction.js.map