(msg: string)
| 67 | |
| 68 | export function createBridgeApiClient(deps: BridgeApiDeps): BridgeApiClient { |
| 69 | function debug(msg: string): void { |
| 70 | deps.onDebug?.(msg) |
| 71 | } |
| 72 | |
| 73 | let consecutiveEmptyPolls = 0 |
| 74 | const EMPTY_POLL_LOG_INTERVAL = 100 |
no outgoing calls
no test coverage detected