upbeatradio
Version:
Easily interact with UpBeatRadio.net API
10 lines • 429 B
TypeScript
import { AxiosResponse } from "axios";
import { RecentlyPlayed, Booked, UpBeatStats } from "../@types/types";
import { HTTP } from "./HTTP";
export declare class UpBeatClient extends HTTP {
constructor();
getStats(): Promise<AxiosResponse<UpBeatStats>>;
getRecentlyPlayed(): Promise<AxiosResponse<RecentlyPlayed>>;
getBooked(): Promise<AxiosResponse<Booked>>;
}
//# sourceMappingURL=UpBeatClient.d.ts.map