Authentication tokens returned from Spotify API

interface SpotifyTokens {
    access_token: string;
    refresh_token: string;
    expires_in: number;
    token_type: string;
    scope: string;
}

Properties

access_token: string
refresh_token: string
expires_in: number
token_type: string
scope: string