(controller)
| 245 | headers: new Headers({ 'content-type': `multipart/form-data; boundary=${boundary}` }), |
| 246 | body: new ReadableStream<Uint8Array>({ |
| 247 | start(controller) { |
| 248 | controller.enqueue(new Uint8Array(body)) |
| 249 | controller.close() |
| 250 | }, |
| 251 | }), |
| 252 | signal: undefined, |
| 253 | } as unknown as NextRequest |