Interface conversion, search bar layout

This commit is contained in:
Geomitron
2023-12-09 18:21:01 -06:00
parent d689843f27
commit ece0f75b99
37 changed files with 1531 additions and 760 deletions

View File

@@ -3,8 +3,6 @@ import { UpdateInfo } from 'electron-updater'
import { Settings } from '../Settings'
import { Download, DownloadProgress } from './download.interface'
import { SongResult, SongSearch } from './search.interface'
import { VersionResult } from './songDetails.interface'
import { UpdateProgress } from './update.interface'
export interface ContextBridgeApi {
@@ -27,18 +25,6 @@ export interface IpcInvokeEvents {
input: void
output: Settings
}
songSearch: {
input: SongSearch
output: SongResult[]
}
getSongDetails: {
input: SongResult['id']
output: VersionResult[]
}
getBatchSongDetails: {
input: number[]
output: VersionResult[]
}
getCurrentVersion: {
input: void
output: string