server.d.ts 104 B

1234567
  1. type Server = {
  2. id: number;
  3. title: string;
  4. fqdn: string;
  5. config: { [key: string]: string };
  6. };