@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
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);
}