Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Missing semi colon in typescript-angular api.ts template file #10120

Closed
5 of 6 tasks
marleypowell opened this issue Aug 10, 2021 · 0 comments · Fixed by #10121
Closed
5 of 6 tasks

[BUG] Missing semi colon in typescript-angular api.ts template file #10120

marleypowell opened this issue Aug 10, 2021 · 0 comments · Fixed by #10121

Comments

@marleypowell
Copy link
Contributor

Bug Report Checklist

  • Have you provided a full/minimal spec to reproduce the issue?
  • Have you validated the input using an OpenAPI validator (example)?
  • Have you tested with the latest master to confirm the issue still exists?
  • Have you searched for related issues/PRs?
  • What's the actual output vs expected output?
  • [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description

The apis.mustache file for the typescript-angular generator has a missing semi-colon.

Suggest a fix
{{#apiInfo}}
{{#apis}}
{{#operations}}
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}}];
{{/apiInfo}}
@marleypowell marleypowell changed the title [BUG] Missing semi colon in typescript-angular apis.ts template file [BUG] Missing semi colon in typescript-angular api.ts template file Aug 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant