We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This typing has from my point of view the wrong type assigned:
pathParams: string[];
should be
pathParams: { [index: string]: string };
during debugging the pathParams is an object:
pathParams
File where I found it:
express-openapi-validator/src/framework/types.ts
Line 401 in 461e960
I'm happy to open a pull request if you accept this as an issue.
The text was updated successfully, but these errors were encountered:
@mathewmeconry thanks. i think you're right. please open a PR. thanks a lot!
Sorry, something went wrong.
fixes pathParams typing in OpenApiRequestMetadata
8c5b574
resolves cdimascio#233
@cdimascio here you go :)
Successfully merging a pull request may close this issue.
This typing has from my point of view the wrong type assigned:
should be
during debugging the
pathParams
is an object:File where I found it:
express-openapi-validator/src/framework/types.ts
Line 401 in 461e960
I'm happy to open a pull request if you accept this as an issue.
The text was updated successfully, but these errors were encountered: