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 3dfca97 commit 7ac5025Copy full SHA for 7ac5025
templates/base/http-clients/axios-http-client.ejs
@@ -79,7 +79,7 @@ export class HttpClient<SecurityDataType = unknown> {
79
protected createFormData(input: Record<string, unknown>): FormData {
80
return Object.keys(input || {}).reduce((formData, key) => {
81
const property = input[key];
82
- const propertyContent: Iterable<any> = (property instanceof Array) ? property : [property]
+ const propertyContent: any[] = (property instanceof Array) ? property : [property]
83
84
for (const formItem of propertyContent) {
85
const isFileType = formItem instanceof Blob || formItem instanceof File;
0 commit comments