-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
732 reduce amount of used generics #735
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit a89bb53:
|
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #735 +/- ##
==========================================
- Coverage 72.15% 72.13% -0.02%
==========================================
Files 126 126
Lines 12297 12289 -8
Branches 1229 1228 -1
==========================================
- Hits 8873 8865 -8
Misses 3415 3415
Partials 9 9 ☔ View full report in Codecov by Sentry. |
@@ -41,7 +41,7 @@ export function CreatePetsQueryOptions<TData = CreatePets['response'], TQueryDat | |||
* @summary Create a pet | |||
* @link /pets */ | |||
|
|||
export function useCreatePets<TData = CreatePets['response'], TQueryData = CreatePets['response'], TQueryKey extends QueryKey = CreatePetsQueryKey>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We still need data and queryKey, without you can not set select
with correct types
No description provided.