@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines (10 loc) • 334 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
import RendererContext from './misc/RendererContext.js';
export default class ButtonCardView extends YTNode {
static type: string;
title: string;
icon_name: string;
renderer_context: RendererContext;
constructor(data: RawNode);
}