Typescript-angular: Added missing semi colon to interface export in apis.ts template file. (#10121)

This commit is contained in:
Marley 2021-08-10 14:00:57 +02:00 committed by GitHub
parent 664aa2d946
commit d0788cdbc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}}];