Expanded Interfaces
Services got expanded, now uses Enums where sensible
This commit is contained in:
parent
13620efcd5
commit
39aaea05e5
1 changed files with 33 additions and 6 deletions
|
@ -1,15 +1,42 @@
|
|||
export interface LinkList {
|
||||
services: CustomLink[],
|
||||
export interface EntryList {
|
||||
services: Service[],
|
||||
games: CustomLink[]
|
||||
}
|
||||
export interface CustomLink {
|
||||
name: string,
|
||||
href: string,
|
||||
desc: string,
|
||||
ip: string,
|
||||
type: string,
|
||||
location: string,
|
||||
status: string,
|
||||
docker_container_name: string
|
||||
}
|
||||
|
||||
export interface Service {
|
||||
name: string,
|
||||
href: string,
|
||||
desc: string,
|
||||
warn: string,
|
||||
ip: string,
|
||||
location: string,
|
||||
status: string,
|
||||
docker_container_name: string
|
||||
type: ServiceType,
|
||||
docker_container_name: string,
|
||||
location: ServiceLocation,
|
||||
status: ServiceStatus
|
||||
}
|
||||
|
||||
export enum ServiceStatus {
|
||||
online = "Online",
|
||||
offline = "Offline",
|
||||
loading = "Loading",
|
||||
error = "ERROR"
|
||||
}
|
||||
|
||||
export enum ServiceLocation {
|
||||
brr7_4800u = "brr7-4800u",
|
||||
other = ""
|
||||
}
|
||||
|
||||
export enum ServiceType {
|
||||
docker = "docker",
|
||||
app = "app"
|
||||
}
|
Loading…
Reference in a new issue