I have a problem with Tsoa nodejs File upload
I wrote the method based on the tsoa documentation but the output varible is always undefined
This is my method
@Post('/uploadNewExporterTemplate')
public async uploadNewExporterTemplate(
@Query() templateName: string,
@Query() unit: string,
@Query() testWith: string,
@UploadedFile() file: Express.Multer.File,
) {
const mul = multer()
console.log(file,unit,testWith);
return {stat:"Ok",ss:templateName}
}
And this is the swagger result
and finally this the debug result