UNPKG

innertuber-rn

Version:

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

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