mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
20 lines
326 B
TypeScript
20 lines
326 B
TypeScript
export interface Server {
|
|
id: string
|
|
address: string
|
|
username: string
|
|
token: string
|
|
salt: string
|
|
}
|
|
|
|
export interface AppSettings {
|
|
servers: Server[]
|
|
home: {
|
|
lists: string[]
|
|
}
|
|
activeServer?: string
|
|
scrobble: boolean
|
|
estimateContentLength: boolean
|
|
maxBitrateWifi: number
|
|
maxBitrateMobile: number
|
|
}
|