(path: string, init?: RequestInit)
| 63 | const decodeGraphqlResponse = Schema.decodeUnknownEffect(GraphqlResponse); |
| 64 | |
| 65 | const request = (path: string, init?: RequestInit) => new Request(`${origin}${path}`, init); |
| 66 | |
| 67 | const workerFetch = (input: RequestInfo | URL, init?: RequestInit): Promise<Response> => { |
| 68 | const nextRequest = |