You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interfaceFollowedArtistCursors{/** The cursor to use as key to find the next page of items. */after: string;/** The cursor to use as key to find the previous page of items. */before: string;}interfaceFollowedArtistCursorPaging<T>{/** A link to the Web API endpoint returning the full result of the request. */href: string;/** The maximum number of items in the response (as set in the query or by default). */limit: number;/** URL to the next page of items. (null if none) */next: string;/** The cursors used to find the next set of items. */cursors: FollowedArtistCursors;/** The total number of items available to return. */total: number;/** The requested data. */items: T[];}interfaceFollowedArtistsResults{artists: FollowedArtistCursorPaging<Artist>;}
The text was updated successfully, but these errors were encountered:
See docs here. Suggested type below:
The text was updated successfully, but these errors were encountered: