18 lines
295 B
TypeScript
18 lines
295 B
TypeScript
import { Service } from "./Services"
|
|
|
|
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
|
|
}
|
|
|