``` const response = await container.containerFetch("http://container/to-markdown", { method:

  const response = await container.containerFetch("http://container/to-markdown", {
    method: "POST",
    headers: {
      "Content-Type": "multipart/form-data",
      "Content-Disposition": `form-data; name="file"; filename="${file.name}"`,
    },
    body: formData,
  });


[ERROR] DOMException {

code: 25,
name: 'DataCloneError',
message: 'Could not serialize object of type "FormData". This type does not support
serialization.',
stack: 'DataCloneError: Could not serialize object of type "FormData". This type does not
support serialization.\n' +

is this not implemented?
Was this page helpful?