UNPKG

innertuber-rn

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

15 lines (14 loc) 449 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import Author from './misc/Author.js'; import Text from './misc/Text.js'; export default class WatchCardRichHeader extends YTNode { static type: string; title: Text; title_endpoint: NavigationEndpoint; subtitle: Text; author: Author; style: string; constructor(data: RawNode); }