subtracks/app/models/music.ts
austinried 62a721ba4d build out artist view
clean up mapping methods a bit
2021-07-15 16:58:08 +09:00

80 lines
1.2 KiB
TypeScript

export interface Artist {
id: string
name: string
starred?: Date
}
export interface ArtistInfo extends Artist {
albums: Album[]
mediumImageUrl?: string
largeImageUrl?: string
coverArtUris: string[]
}
export interface ArtistArt {
uri?: string
coverArtUris: string[]
}
export interface AlbumListItem {
id: string
name: string
artist?: string
starred?: Date
coverArtThumbUri?: string
}
export interface Album extends AlbumListItem {
coverArtUri?: string
year?: number
}
export interface AlbumWithSongs extends Album {
songs: Song[]
}
export interface Song {
id: string
album?: string
artist?: string
title: string
track?: number
duration?: number
starred?: Date
streamUri: string
coverArtUri?: string
coverArtThumbUri?: string
}
export type DownloadedSong = {
id: string
type: 'song'
name: string
album: string
artist: string
}
export type DownloadedAlbum = {
id: string
type: 'album'
songs: string[]
name: string
artist: string
}
export type DownloadedArtist = {
id: string
type: 'artist'
songs: string[]
name: string
}
export type DownloadedPlaylist = {
id: string
type: 'playlist'
songs: string[]
name: string
}