spotify-ts-wrapper
Version:
Spotify TypeScript wrapper.
17 lines • 449 B
TypeScript
import type { Genre } from "../Interfaces/Genres";
interface PagePagination {
offSet?: number;
limit?: number;
}
interface SectionPagination {
offSet?: number;
limit?: number;
}
interface IOptions {
pageId?: string;
pagePagination?: PagePagination;
sectionPagination?: SectionPagination;
}
export declare function getGenre<T extends IOptions>(options: T): Promise<Genre>;
export {};
//# sourceMappingURL=getGenre.d.ts.map