| 137 | } |
| 138 | |
| 139 | interface HealthCheckResult { |
| 140 | waiting: number; |
| 141 | active: number; |
| 142 | succeeded: number; |
| 143 | failed: number; |
| 144 | delayed: number; |
| 145 | newestJob?: string; |
| 146 | } |
| 147 | |
| 148 | type DoneCallback<T> = (error: Error | null, result?: T) => void; |
| 149 | } |
nothing calls this directly
no outgoing calls
no test coverage detected