(value: unknown)
| 14 | const signedUrl = "https://storage.example.com/bundle.tar.gz?sig=x"; |
| 15 | |
| 16 | function trpcWrapped(value: unknown) { |
| 17 | return { result: { data: superjson.serialize(value) } }; |
| 18 | } |
| 19 | |
| 20 | function makeSequenceFetch( |
| 21 | responses: { url: string; response: Response | Error }[], |
no outgoing calls
no test coverage detected