Recently played tracks response from Spotify API

interface SpotifyRecentlyPlayedResponse {
    items: SpotifyPlayHistory[];
    next: null | string;
    cursors: { after: string; before: string };
    limit: number;
    href: string;
}

Properties

next: null | string
cursors: { after: string; before: string }
limit: number
href: string