UNPKG

innertuber-rn

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

12 lines 308 B
import Text from './misc/Text.js'; import { YTNode } from '../helpers.js'; class Alert extends YTNode { constructor(data) { super(); this.text = new Text(data.text); this.alert_type = data.type; } } Alert.type = 'Alert'; export default Alert; //# sourceMappingURL=Alert.js.map