UNPKG

innertuber-rn

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

14 lines (13 loc) 465 B
import { type RawNode } from '../index.js'; import { type ObservedArray, YTNode } from '../helpers.js'; import Thumbnail from './misc/Thumbnail.js'; export default class CarouselItem extends YTNode { static type: string; items: ObservedArray<YTNode>; background_color: string; layout_style: string; pagination_thumbnails: Thumbnail[]; paginator_alignment: string; constructor(data: RawNode); get contents(): ObservedArray<YTNode>; }