(response: ServerResponse, status: number, body: unknown)
| 114 | }; |
| 115 | |
| 116 | const writeJson = (response: ServerResponse, status: number, body: unknown): void => { |
| 117 | response.writeHead(status, { "content-type": "application/json" }); |
| 118 | response.end(JSON.stringify(body)); |
| 119 | }; |
| 120 | |
| 121 | const withWorkOSStub = async <A>( |
| 122 | keypair: Keypair, |