Interface IRefreshTokenResponse

IRefreshTokenResponse Interface representing a refresh token response.

const refreshTokenResponse: IRefreshTokenResponse = {
access: "NEW_ACCESS_TOKEN"
};
interface IRefreshTokenResponse {
    access: string;
}

Properties

Properties

access: string

The new access token.