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
Problem: vuexOidcProcessSignInCallback is typed as returning void but actually returns a string.
void
string
Expected:
export function vuexOidcProcessSignInCallback(settings: VuexOidcClientSettings): string;
Currently we need to work around by double casting.
const redirectPath = await vuexOidcProcessSignInCallback(settings) as unknown as string
The text was updated successfully, but these errors were encountered:
Thanks for reporting. I will correct this within short!
Sorry, something went wrong.
Checking in on this. Is it planned for any specific release?
No branches or pull requests
Problem:
vuexOidcProcessSignInCallback is typed as returning
void
but actually returns astring
.Expected:
Currently we need to work around by double casting.
The text was updated successfully, but these errors were encountered: