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) 433 B
import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import Text from './misc/Text.js'; export default class SettingBoolean extends YTNode { static type: string; title?: Text; summary?: Text; enable_endpoint?: NavigationEndpoint; disable_endpoint?: NavigationEndpoint; item_id: string; constructor(data: RawNode); }