Initial Browse UI and initial song search

This commit is contained in:
Geomitron
2020-02-06 13:21:35 -05:00
parent 8f20311f68
commit e5fd303c91
30 changed files with 616 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
export interface SongSearch {
query: string
type: SearchType
}
export enum SearchType {
'Any', 'Name', 'Artist', 'Album', 'Genre', 'Year', 'Charter'
}
export interface SongResult {
id: number
name: string
artist: string
album: string
genre: string
year: string
}

View File

@@ -1,4 +0,0 @@
export interface TestInput {
value1: string
value2: number
}