(path: string, callOpts?: RequestOptions)
| 284 | } |
| 285 | |
| 286 | const rawFetch = (path: string, callOpts?: RequestOptions): Promise<Response> => { |
| 287 | const finalOpts: RequestOptions = { ...callOpts, method: callOpts?.method ?? 'GET' } |
| 288 | const built = buildRequest(state, path, finalOpts, false) |
| 289 | return execute(state, built.request, built.resolved, built.effectiveTimeoutMs, built.userSignal) |
| 290 | } |
| 291 | |
| 292 | const streamFetch = (path: string, callOpts?: RequestOptions): Promise<Response> => { |
| 293 | // SSE bodies must not be aborted by a request-level timeout — `0` is the buildRequest |
nothing calls this directly
no test coverage detected