UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

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