nuxtify-api
Version:
Lightweight music API for client without third-party libraries.
11 lines (10 loc) • 360 B
TypeScript
import { Base } from '../base';
export declare class Podcast extends Base {
getHome(): Promise<any>;
getTop(): Promise<any>;
getUrl(podcastId: string): Promise<any>;
getCurrentMedia(podcastId: string): Promise<any>;
getDetail(podcastId: string): Promise<any>;
getComments(podcastId: string): Promise<any>;
getAll(): Promise<any>;
}