ym-api
Version:
A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru
7 lines (6 loc) • 346 B
TypeScript
import { HttpClientInterface, Method, Response, RequestInterface } from "./types";
export default class HttpClient implements HttpClientInterface {
_sendRequestAxios(method: Method, request: RequestInterface): Promise<Response>;
get(request: RequestInterface): Promise<Response>;
post(request: RequestInterface): Promise<Response>;
}