parent
43e320a62b
commit
799f6d65aa
1 changed files with 6 additions and 2 deletions
@ -1,4 +1,8 @@ |
||||
declare type AnvilStatus = { |
||||
nodes: AnvilNodeStatus[]; |
||||
timestamp: number; |
||||
anvil_state: 'optimal' | 'not_ready' | 'degraded'; |
||||
nodes: Array<{ |
||||
state: 'unknown' | 'off' | 'on' | 'accessible' | 'ready'; |
||||
state_percent: number; |
||||
state_message: string; |
||||
}>; |
||||
}; |
||||
|
Loading…
Reference in new issue