wcandillon / swagger-js-codegen

A Swagger Codegen for typescript, nodejs & angularjs
Apache License 2.0
693 stars 286 forks source link

fix untyped objects in flow #243

Closed murtadha closed 5 years ago

murtadha commented 5 years ago

If we have an object with no specified properties, the generated flow type results into {}, which means this object cannot have any fields. Instead, we want to allow the object to have any fields, so the right type should be {...}