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