- type CheckDisjunction = Array<string | CheckDisjunction | CheckConjunction>;
- type CheckConjunction = { and: Array<string | CheckDisjunction | CheckConjunction> };
- type HttpCheckConfig = {
- id: number;
- serverId?: number;
- title: string;
- type: 'http';
- url: string;
- active: boolean;
- interval: number;
- timeout?: number;
- notify: boolean;
- notifyThreshold: number;
- checks: CheckDisjunction;
- };
|