- Generate models as interfaces instead of classes (#25).
This is a breaking change, but should only affect cases where models are instantiated, which should change.
// Old way:
let model = new Model();
// New way:
let model: Model = {};
- Was not correctly generating comments on several places (#26)