spotify-ts-wrapper
Version:
Spotify TypeScript wrapper.
12 lines • 337 B
TypeScript
import { Playlist } from "../Interfaces/Playlist";
interface PagePagination {
offSet?: number;
limit?: number;
}
interface IOptions {
id: string;
pagePagination?: PagePagination;
}
export declare function getPlaylist<T extends IOptions>(options: T): Promise<Playlist>;
export {};
//# sourceMappingURL=getPlaylist.d.ts.map