Make meta in react-query type-safe.
So right now I have to write something like
Is there a way to force all the queries to have this meta typed with my type?
Is there a way to force all the queries to have this meta typed with my type?
*.useQuery({}, {
meta: {
mfa: false
} satisfies ReactQueryMeta
});