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