Skip to content

Commit

Permalink
Typescript-angular: Added missing semi colon to interface export in `…
Browse files Browse the repository at this point in the history
…apis.ts` template file. (#10121)
  • Loading branch information
marleypowell committed Aug 10, 2021
1 parent 664aa2d commit d0788cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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}}];
Expand Down

0 comments on commit d0788cd

Please sign in to comment.