UNPKG

@duell10111/youtubei.js

Version:

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

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