main-site/interfaces/LinkTypes.ts

18 lines
295 B
TypeScript
Raw Normal View History

import { Service } from "./Services"
export interface EntryList {
services: Service[],
2022-12-03 20:02:13 +00:00
games: CustomLink[]
}
export interface CustomLink {
name: string,
href: string,
desc: string,
ip: string,
type: string,
2022-12-03 20:02:13 +00:00
location: string,
status: string,
docker_container_name: string
}