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
Params is:
Params
export type Params = Record<string, string>;
But if you get an optional param that is missing you get undefined.
undefined
Either the type of Params should be:
Or the key for optional parameters should not be present.
The text was updated successfully, but these errors were encountered:
fix: check matcher test types (4Catalyzer#1057)
f5d565d
fix: reproduce problem with params typing (4Catalyzer#1057)
2ce1eb6
fix: optional params may be undefined (4Catalyzer#1057)
ebde858
Successfully merging a pull request may close this issue.
Params
is:But if you get an optional param that is missing you get
undefined
.Either the type of
Params
should be:Or the key for optional parameters should not be present.
The text was updated successfully, but these errors were encountered: