@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
33 lines (32 loc) • 814 B
TypeScript
import NavigationEndpoint from './NavigationEndpoint.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
declare class ActionButton {
static type: string;
icon_name: string;
endpoint: NavigationEndpoint;
a11y_text: string;
style: string;
constructor(data: RawNode);
}
declare class Panel {
static type: string;
image: {
url: string;
width: number;
height: number;
}[];
content_mode: string;
crop_options: string;
image_aspect_ratio: string;
caption: string;
action_buttons: ActionButton[];
constructor(data: RawNode);
}
export default class MusicLargeCardItemCarousel extends YTNode {
static type: string;
panels: Panel[];
header: any;
constructor(data: RawNode);
}
export {};