UNPKG

innertuber-rn

Version:

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

13 lines (12 loc) 382 B
import { type ObservedArray, YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import ButtonView from './ButtonView.js'; export type ActionRow = { actions: ObservedArray<ButtonView>; }; export default class FlexibleActionsView extends YTNode { static type: string; actions_rows: ActionRow[]; style: string; constructor(data: RawNode); }