spotify-types
spotify-types copied to clipboard
All the typings for the various Spotify API Object typings written in typescript.
See docs [here](https://developer.spotify.com/documentation/web-api/reference/get-followed). Suggested type below: ```typescript interface FollowedArtistCursors { /** The cursor to use as key to find the next page of items. */ after: string; /** The cursor...
Hi! Thank you for creating a great package. However, while using it, I noticed I couldn't narrow down the object types using standard TS type guards. For example, given an...
Artists property in Track returns SimplifiedArtist[] instead of Artist[] 
At the moment, the Spotify API’s SearchContent object includes tracks, artists, albums, playlists, shows, and episodes. However, the spotify-types library only supports the following types: ```typescript export interface SearchContent {...