@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
15 lines (14 loc) • 449 B
TypeScript
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);
}