subtracks/app/models/settings.ts
austinried efc7e5c799 impl scrobble & scrobble setting
works even in background thanks zustand
2021-08-04 17:59:43 +09:00

17 lines
241 B
TypeScript

export interface Server {
id: string
address: string
username: string
token: string
salt: string
scrobble: boolean
}
export interface AppSettings {
servers: Server[]
home: {
lists: string[]
}
activeServer?: string
}