@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
15 lines (14 loc) • 437 B
TypeScript
import Text from './misc/Text.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class CompactLink extends YTNode {
static type: string;
title: string;
subtitle?: Text;
endpoint: NavigationEndpoint;
style: string;
icon_type?: string;
secondary_icon_type?: string;
constructor(data: RawNode);
}