Created by: rcarton
When generating the import list for a super class, the comma separating the objects was missing:
The code generated in SuperClass.ts
was
import {
SubClassAFromJSONTyped <-- missing comma
SubClassBFromJSONTyped
} from './';
It was missing the comma between the imported entries.
I tested by building the latest version off of master and generating the client for my app, then applied the fix and validated that the new version correctly passed the typescript compilation.