(response: HttpClientResponse.HttpClientResponse)
| 36 | } |
| 37 | |
| 38 | function json<T>(response: HttpClientResponse.HttpClientResponse) { |
| 39 | return response.json.pipe(Effect.map((value) => value as T)) |
| 40 | } |
| 41 | |
| 42 | describe("project directories and copies endpoints", () => { |
| 43 | type ProjectDirectory = { directory: string; strategy?: string } |