Update TypeScript jQuery, Aurelia, Inversify with Petstore OAS2 (#248)

* update ts inversify with petstore oas2

* update typescript-aurelia petstore with oas2

* update ts jquery with oas2
This commit is contained in:
William Cheng
2018-04-27 22:12:13 +08:00
committed by GitHub
parent 6a98840199
commit 509fdd892b
13 changed files with 141 additions and 168 deletions

View File

@@ -116,6 +116,11 @@ public class TypeScriptJqueryClientCodegen extends AbstractTypeScriptClientCodeg
return addModelPrefix(openAPIType);
}
@Override
public String getTypeDeclaration(String name) {
return addModelPrefix(name);
}
@Override
public void postProcessParameter(CodegenParameter parameter) {
super.postProcessParameter(parameter);
@@ -193,4 +198,5 @@ public class TypeScriptJqueryClientCodegen extends AbstractTypeScriptClientCodeg
return indexPackage.replace('.', File.separatorChar);
}
}