Description
The generated typescript client fails in angular 7 build when there seems to be any sort of file field.
Typescript version
"typescript": "^3.1.3"
Swagger-codegen version
The latest online version
Swagger declaration file content or url
parameters:
- name: attachment1
type: file
in: formData
required: false
Produces:
if (attachment1 !== undefined) {
formParams = formParams.append('attachment1', <any>attachment1) || formParams;
}
The definition of append tracks down to
let formParams: { append(param: string, value: any): void; };

Steps to reproduce
Generate a new client with angular-typescript selected.