openapi-generator
openapi-generator copied to clipboard
TypeScript Fetch Generator
Bug Report Checklist
- I have a question about the typescript fetch generator. In the YAML API Definition, i have the following block :
{
"name": "file",
"in": "formData",
"description": "The file",
"required": false,
"type": "file"
}
The generator map the formData with Blob structure :
export interface postResquest {
file?: Blob;
}
But I have no idea to create a Blob struture. Can you hep me ?
I use NodeJS v18.
Thanks
@mmartinsdev I am running into same issue. Did you find any solution ?
Same here. Did you manage to find a solution?