UNPKG

@imput/youtubei.js

Version:

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

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); }