(self: HttpClientRequest, options?: {
readonly signal?: AbortSignal | undefined
})
| 982 | * @since 4.0.0 |
| 983 | */ |
| 984 | export const toWeb = (self: HttpClientRequest, options?: { |
| 985 | readonly signal?: AbortSignal | undefined |
| 986 | }): Effect.Effect<Request, Url.UrlError> => |
| 987 | Effect.contextWith((context) => |
| 988 | Effect.fromResult(toWebResult(self, { |
| 989 | context: context, |
| 990 | signal: options?.signal |
| 991 | })) |
| 992 | ) |
nothing calls this directly
no test coverage detected