@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines • 337 B
JavaScript
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