mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 17:19:27 +01:00
17 lines
241 B
TypeScript
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
|
|
}
|