ym-api-meowed
Version:
A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru
15 lines (12 loc) • 428 B
text/typescript
import HttpClient from "./Network/HttpClient";
import { clckApiRequest } from "./PreparedRequest";
const httpClient = new HttpClient();
/**
* GET: clck.ru/--
* @param URL Url to something
* @returns clck.ru shortened link
*/
export default function shortenLink(URL: string): Promise<string> {
const request = clckApiRequest().setPath("/--").addQuery({ url: URL });
return httpClient.get(request) as Promise<string>;
}