UNPKG

@remcostoeten/fync

Version:

A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)

13 lines 393 B
import type { TSpotifyExternalUrls, TSpotifyFollowers, TSpotifyImage } from "./spotify-common"; export type TSpotifyUser = { id: 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