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