mirror of
https://github.com/apricote/Listory.git
synced 2026-02-06 17:57:03 +00:00
feat(api): fetch listens from spotify
This commit is contained in:
parent
f253a66f86
commit
f2065d3f1f
54 changed files with 1180 additions and 256 deletions
|
|
@ -0,0 +1,26 @@
|
|||
export class SimplifiedArtistObject {
|
||||
/**
|
||||
* A link to the Web API endpoint providing full details of the artist.
|
||||
*/
|
||||
href: string;
|
||||
|
||||
/**
|
||||
* The Spotify ID for the artist.
|
||||
*/
|
||||
id: string;
|
||||
|
||||
/**
|
||||
* The name of the artist.
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* The object type: "artist".
|
||||
*/
|
||||
type: "artist";
|
||||
|
||||
/**
|
||||
* The Spotify URI for the artist.
|
||||
*/
|
||||
uri: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue