@antoniojps/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
11 lines • 321 B
JavaScript
import { YTNode } from '../helpers.js';
import { Text } from '../misc.js';
export default class SharePanelTitleV15 extends YTNode {
static type = 'SharePanelTitleV15';
title;
constructor(data) {
super();
this.title = new Text(data.title);
}
}
//# sourceMappingURL=SharePanelTitleV15.js.map