subtracks/app/models/settings.ts
2021-08-20 16:32:24 +09:00

22 lines
366 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
minBuffer: number
maxBuffer: number
}