mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-07-09 11:35:08 +00:00
Initial Browse UI and initial song search
This commit is contained in:
17
src/electron/shared/interfaces/search.interface.ts
Normal file
17
src/electron/shared/interfaces/search.interface.ts
Normal 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
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
export interface TestInput {
|
||||
value1: string
|
||||
value2: number
|
||||
}
|
||||
Reference in New Issue
Block a user