@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
15 lines • 538 B
JavaScript
import { Parser } from '../../index.js';
import { YTNode } from '../../helpers.js';
class ReplayChatItemAction extends YTNode {
constructor(data) {
super();
this.actions = Parser.parseArray(data.actions?.map((action) => {
delete action.clickTrackingParams;
return action;
}));
this.video_offset_time_msec = data.videoOffsetTimeMsec;
}
}
ReplayChatItemAction.type = 'ReplayChatItemAction';
export default ReplayChatItemAction;
//# sourceMappingURL=ReplayChatItemAction.js.map