Types
List of all typescript interfaces and types used for describing data and parameters for communication with spinamp database.
IConfig
interface IConfig {
SPINDEX_NODE_URL: string;
PLAYLIST_NODE_URL: string;
IPFS_GATEWAY_URL_IMAGE: string;
IPFS_GATEWAY_URL_AUDIO: string;
}IArtist
interface IArtist {
id: string;
name: string;
createdAtTime: string;
slug: string;
profiles: {
[platformId: string]: IArtistProfile;
};
}IArtistProfile
ITrack
ICollectionTrack
INft
ITrackNft
IMusicPlatformData
IPlaylist
IApiListQueryParams
IApiListQueryResponse
Last updated