innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
12 lines (11 loc) • 348 B
TypeScript
import NavigationEndpoint from './NavigationEndpoint.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class DownloadButton extends YTNode {
static type: string;
style: string;
size: string;
endpoint: NavigationEndpoint;
target_id: string;
constructor(data: RawNode);
}