Skip to content

Commit

Permalink
Merge pull request #234 from jrel/fix-template-space
Browse files Browse the repository at this point in the history
fix: removes the double space in the interface template

Fixes #232
  • Loading branch information
luisfpg committed Mar 30, 2020
2 parents 9a5d6f6 + e549132 commit d211a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/object.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{{modelComments}}}export interface {{modelClass}} {{#modelParents}}{{#parentIsFirst}}extends {{/parentIsFirst}}{{^parentIsFirst}}, {{/parentIsFirst}}{{modelClass}}{{/modelParents}} {
{{{modelComments}}}export interface {{modelClass}} {{#modelParents}}{{#parentIsFirst}}extends {{/parentIsFirst}}{{^parentIsFirst}}, {{/parentIsFirst}}{{modelClass}}{{/modelParents}}{
{{#modelProperties}}
{{{propertyComments}}}{{&propertyName}}{{^propertyRequired}}?{{/propertyRequired}}: {{{propertyType}}};
{{/modelProperties}}
Expand Down

0 comments on commit d211a26

Please sign in to comment.