http-check-config.d.ts 151 B

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