UNPKG

@duell10111/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

11 lines 288 B
import { YTNode } from '../helpers.js'; import Text from './misc/Text.js'; export default class LineItem extends YTNode { static type = 'LineItem'; text; constructor(data) { super(); this.text = new Text(data.text); } } //# sourceMappingURL=LineItem.js.map