UNPKG

@np-dev/youtubei-js

Version:

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

13 lines (12 loc) 438 B
import { YTNode, type ObservedArray } from '../helpers.js'; import { type RawNode } from '../index.js'; import Button from './Button.js'; import ChipCloudChip from './ChipCloudChip.js'; export default class ChipCloud extends YTNode { static type: string; chips: ObservedArray<ChipCloudChip>; next_button: Button | null; previous_button: Button | null; horizontal_scrollable: boolean; constructor(data: RawNode); }