(body: unknown)
| 13 | const noSleep = async (): Promise<void> => {}; |
| 14 | |
| 15 | function json(body: unknown): Response { |
| 16 | return new Response(JSON.stringify(body), { |
| 17 | headers: { "content-type": "application/json" }, |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | function trpcWrapped(value: unknown) { |
| 22 | return { result: { data: superjson.serialize(value) } }; |
no outgoing calls
no test coverage detected