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