innertuber-rn
Version: 
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines (10 loc) • 360 B
TypeScript
import { type RawNode } from '../index.js';
import Text from './misc/Text.js';
import { type ObservedArray, YTNode } from '../helpers.js';
import SubFeedOption from './SubFeedOption.js';
export default class SubFeedSelector extends YTNode {
    static type: string;
    title: Text;
    options: ObservedArray<SubFeedOption>;
    constructor(data: RawNode);
}