@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
13 lines (12 loc) • 517 B
TypeScript
import MusicCarouselShelf from '../classes/MusicCarouselShelf.js';
import MusicNavigationButton from '../classes/MusicNavigationButton.js';
import type { ApiResponse } from '../../core/index.js';
import type { ObservedArray } from '../helpers.js';
import type { IBrowseResponse } from '../types/index.js';
export default class Explore {
#private;
top_buttons: MusicNavigationButton[];
sections: ObservedArray<MusicCarouselShelf>;
constructor(response: ApiResponse);
get page(): IBrowseResponse;
}