Skip to content

0.10.0

Compare
Choose a tag to compare
@luisfpg luisfpg released this 15 Jan 13:01
· 231 commits to master since this release
  • 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)