(body: unknown)
| 72 | } |
| 73 | |
| 74 | function jsonRequest(body: unknown): Request { |
| 75 | return new Request('http://localhost/job/endpoint', { |
| 76 | method: 'POST', |
| 77 | headers: { 'Content-Type': 'application/json' }, |
| 78 | body: JSON.stringify(body), |
| 79 | }); |
| 80 | } |
| 81 | |
| 82 | async function readJson(response: Response): Promise<unknown> { |
| 83 | return response.json(); |