We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9385b commit 3aae614Copy full SHA for 3aae614
.gitignore
@@ -15,3 +15,4 @@ test/e2e/generated
15
samples/generated
16
samples/swagger-codegen-cli-v2.jar
17
samples/swagger-codegen-cli-v3.jar
18
+openapi.tmp.json
src/templates/core/node/getRequestBody.hbs
@@ -1,6 +1,6 @@
1
function getRequestBody(options: ApiRequestOptions): BodyInit | undefined {
2
if (options.formData) {
3
- return getFormData(options.formData);
+ return getFormData(options.formData) as BodyInit;
4
}
5
if (options.body) {
6
if (isString(options.body) || isBinary(options.body)) {
0 commit comments