From 3da4d62d22c9f040534c949268e4c22090edd8ba Mon Sep 17 00:00:00 2001 From: Marley Powell Date: Tue, 10 Aug 2021 09:41:39 +0100 Subject: [PATCH] fix: :bug: Added missing semi colon to interface export in `apis.ts` template file. --- .../src/main/resources/typescript-angular/apis.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openapi-generator/src/main/resources/typescript-angular/apis.mustache b/modules/openapi-generator/src/main/resources/typescript-angular/apis.mustache index 514b5e0d10fd..ad8785cf8cd5 100644 --- a/modules/openapi-generator/src/main/resources/typescript-angular/apis.mustache +++ b/modules/openapi-generator/src/main/resources/typescript-angular/apis.mustache @@ -5,7 +5,7 @@ export * from './{{ classFilename }}'; import { {{ classname }} } from './{{ classFilename }}'; {{/operations}} {{#withInterfaces}} -export * from './{{ classFilename }}Interface' +export * from './{{ classFilename }}Interface'; {{/withInterfaces}} {{/apis}} export const APIS = [{{#apis}}{{#operations}}{{ classname }}{{/operations}}{{^-last}}, {{/-last}}{{/apis}}];