UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

11 lines 353 B
import { YTNode } from '../helpers.js'; import { Text } from '../misc.js'; class NotificationAction extends YTNode { constructor(data) { super(); this.response_text = new Text(data.responseText); } } NotificationAction.type = 'NotificationAction'; export default NotificationAction; //# sourceMappingURL=NotificationAction.js.map