UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

11 lines 345 B
import { YTNode } from '../helpers.js'; import { Text } from '../misc.js'; class DialogHeaderView extends YTNode { constructor(data) { super(); this.headline = Text.fromAttributed(data.headline); } } DialogHeaderView.type = 'DialogHeaderView'; export default DialogHeaderView; //# sourceMappingURL=DialogHeaderView.js.map