| 16 | |
| 17 | /** Options accepted by the low-level `request` method. */ |
| 18 | export interface RequestOptions extends Omit<RequestInit, 'signal'> { |
| 19 | /** Override the per-request timeout (ms). Pass 0 to disable. */ |
| 20 | timeoutMs?: number; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Resolve the backend base URL from (in priority order): |
nothing calls this directly
no outgoing calls
no test coverage detected