http-check-config.d.ts 190 B

1234567891011
  1. type HttpCheckConfig = {
  2. id: number;
  3. serverId?: number;
  4. title: string;
  5. type: 'http';
  6. url: string;
  7. active: boolean;
  8. interval: number;
  9. timeout?: number;
  10. checks: string[];
  11. };