(method: keyof HttpClient)
| 152 | ) |
| 153 | |
| 154 | const accessor = (method: keyof HttpClient) => (...args: Array<any>): Effect.Effect<any, any, any> => |
| 155 | Effect.flatMap( |
| 156 | HttpClient, |
| 157 | (client) => (client as any)[method](...args) |
| 158 | ) |
| 159 | |
| 160 | /** |
| 161 | * Executes a prebuilt `HttpClientRequest` using the `HttpClient` service from the environment. |
no outgoing calls