| 1 | interface ApiConfig { |
| 2 | baseUrl: string; |
| 3 | defaultHeaders?: Record<string, string | Promise<string | null>>; |
| 4 | maxRetries?: number; |
| 5 | initialRetryDelay?: number; |
| 6 | } |
| 7 | |
| 8 | interface FetchOptions extends RequestInit { |
| 9 | retries?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected