@remcostoeten/fync
Version:
Unified TypeScript library for 9 popular APIs with consistent functional architecture
13 lines • 452 B
TypeScript
import type { TSpotifyExternalUrls, TSpotifyFollowers, TSpotifyImage } from "./spotify-common";
import type { TBaseEntity } from "../../core/types";
export type TSpotifyUser = TBaseEntity<string> & {
display_name: string;
email?: string;
country?: string;
followers: TSpotifyFollowers;
images: TSpotifyImage[];
external_urls: TSpotifyExternalUrls;
uri: string;
href: string;
};
//# sourceMappingURL=spotify-user.d.ts.map