yandex-music
Version:
Creative and progressive Node.js framework for applications that interact with yandex music
11 lines • 433 B
TypeScript
import { List } from "./interfaces";
declare type ObjType = "artist" | "album" | "playlist" | "track";
/**
* Getting an object/objects.
* @param {ObjType} type The type of the object.
* @param {List} ids The unique identifier of the object or objects.
* @returns The requested object.
*/
export declare const list: (type: ObjType, ids: List) => [string, URLSearchParams];
export {};
//# sourceMappingURL=utils.d.ts.map