| 20 | } |
| 21 | |
| 22 | export interface BaseRequestOptions { |
| 23 | /** The maximum time to wait for a response in seconds. */ |
| 24 | timeoutInSeconds?: number; |
| 25 | /** The number of times to retry the request. Defaults to 2. */ |
| 26 | maxRetries?: number; |
| 27 | /** A hook to abort the request. */ |
| 28 | abortSignal?: AbortSignal; |
| 29 | /** Additional query string parameters to include in the request. */ |
| 30 | queryParams?: Record<string, unknown>; |
| 31 | /** Additional headers to include in the request. */ |
| 32 | headers?: Record<string, string | core.Supplier<string | null | undefined> | null | undefined>; |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…