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