@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
15 lines (14 loc) • 521 B
TypeScript
import Button from './Button.js';
import Text from './misc/Text.js';
import MusicTastebuilderShelfThumbnail from './MusicTastebuilderShelfThumbnail.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class MusicTasteBuilderShelf extends YTNode {
static type: string;
thumbnail: MusicTastebuilderShelfThumbnail | null;
primary_text: Text;
secondary_text: Text;
action_button: Button | null;
is_visible: boolean;
constructor(data: RawNode);
}