From d0788cdbc18bb431c457b0d1c5535e8443b84cc1 Mon Sep 17 00:00:00 2001 From: Marley <55280588+marleypowell@users.noreply.github.com> Date: Tue, 10 Aug 2021 14:00:57 +0200 Subject: [PATCH] Typescript-angular: Added missing semi colon to interface export in `apis.ts` template file. (#10121) --- .../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 514b5e0d10f..ad8785cf8cd 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}}];