innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
12 lines (11 loc) • 364 B
TypeScript
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 SubFeedOption extends YTNode {
static type: string;
name: Text;
is_selected: boolean;
endpoint: NavigationEndpoint;
constructor(data: RawNode);
}