spotify-ts-wrapper
Version:
Spotify TypeScript wrapper.
11 lines • 359 B
TypeScript
import { Country, Timezone } from "../Interfaces";
import type { Home } from "../Interfaces/Home";
interface IOptions {
cookie?: string;
timezone?: Timezone;
country?: Country;
sectionItemsLimit?: number;
}
export declare function getHomeFeed<T extends IOptions>(options: T): Promise<Home>;
export {};
//# sourceMappingURL=getHomeFeed.d.ts.map