main-site/interfaces/LinkTypes.ts
2022-12-11 18:38:43 +01:00

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
}