mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
23 lines
370 B
TypeScript
23 lines
370 B
TypeScript
|
|
||
|
export type BootProbeIds =
|
||
|
'boot-page' |
|
||
|
'health-check' |
|
||
|
'reachable' |
|
||
|
'host-header' |
|
||
|
'system-user'
|
||
|
;
|
||
|
|
||
|
export interface BootProbeResult {
|
||
|
verdict?: string;
|
||
|
success?: boolean;
|
||
|
done?: boolean;
|
||
|
severity?: 'fault' | 'warning' | 'hmm';
|
||
|
details?: Record<string, any>;
|
||
|
}
|
||
|
|
||
|
export interface BootProbeInfo {
|
||
|
id: BootProbeIds;
|
||
|
name: string;
|
||
|
}
|
||
|
|