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