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
No response
When we use RTK Query in the listener middleware, we'd like to get type safety on actions.
This needs some TypeScript magic, thanks to RTK maintainer on discord:
`type TypeGuard = { (input: unknown): input is T; };
type TypeGuardFor<T extends TypeGuard> = T extends TypeGuard ? U : never;
// in startAppListening matcher: ( action ): action is TypeGuardFor< typeof imagesApi.endpoints.listImages.matchFulfilled > => imagesApi.endpoints.listImages.matchFulfilled(action) && action.meta.arg.queryCacheKey === getListImagesUrl({ categories: IMAGE_CATEGORIES }),`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Contact Details
No response
What should this feature add?
When we use RTK Query in the listener middleware, we'd like to get type safety on actions.
This needs some TypeScript magic, thanks to RTK maintainer on discord:
`type TypeGuard = {
(input: unknown): input is T;
};
type TypeGuardFor<T extends TypeGuard> = T extends TypeGuard
? U
: never;
// in startAppListening
matcher: (
action
): action is TypeGuardFor<
typeof imagesApi.endpoints.listImages.matchFulfilled
> =>
imagesApi.endpoints.listImages.matchFulfilled(action) &&
action.meta.arg.queryCacheKey ===
getListImagesUrl({ categories: IMAGE_CATEGORIES }),`
Alternatives
No response
Aditional Content
No response
The text was updated successfully, but these errors were encountered: