[Typescript-Angular2] Removed models namespace from inheritance template (#5728)

This commit is contained in:
Austin Green 2017-06-13 00:51:08 -07:00 committed by wing328
parent 2bc4710e36
commit 1a421112ed

View File

@ -1,4 +1,4 @@
export interface {{classname}} {{#parent}}extends models.{{{parent}}} {{/parent}}{
export interface {{classname}} {{#parent}}extends {{{parent}}} {{/parent}}{
{{#additionalPropertiesType}}
[key: string]: {{{additionalPropertiesType}}}{{#hasVars}} | any{{/hasVars}};