UNPKG

@imput/youtubei.js

Version:

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

11 lines (10 loc) 336 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import ButtonView from './ButtonView.js'; export default class CarouselTitleView extends YTNode { static type: string; title: string; previous_button: ButtonView | null; next_button: ButtonView | null; constructor(data: RawNode); }