| 42 | * Options for the HTTP fetch request. |
| 43 | */ |
| 44 | export interface FetchOptions { |
| 45 | /** Custom request headers */ |
| 46 | headers?: Record<string, string> |
| 47 | /** Proxy configuration */ |
| 48 | proxy?: ProxyConfig |
| 49 | /** HTTP proxy agent (e.g. HttpsProxyAgent) */ |
| 50 | agent?: object |
| 51 | /** AbortSignal to cancel the request */ |
| 52 | signal?: object |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Extracted article data structure. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…