jellyfish-web/src/types/webConfig.ts

21 lines
334 B
TypeScript
Raw Normal View History

2023-05-05 11:47:08 -04:00
interface Theme {
name: string
id: string
color: string
}
interface MenuLink {
name: string
icon?: string
url: string
}
export interface WebConfig {
includeCorsCredentials?: boolean
multiserver?: boolean
themes?: Theme[]
menuLinks?: MenuLink[]
servers?: string[]
plugins?: string[]
}