| 72 | * fires per the backoff). |
| 73 | */ |
| 74 | export interface Pinger { |
| 75 | readonly backend: ConnectivityBackend; |
| 76 | ping(signal: AbortSignal): Promise<PingResult>; |
| 77 | } |
| 78 | |
| 79 | // ============================================================================= |
| 80 | // Manager configuration |
no outgoing calls
no test coverage detected