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