innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
13 lines (12 loc) • 332 B
TypeScript
import Text from './misc/Text.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class SettingsCheckbox extends YTNode {
static type: string;
title: Text;
help_text: Text;
enabled: boolean;
disabled: boolean;
id: string;
constructor(data: RawNode);
}