@types/react-relay
Advanced tools
Comparing version 14.1.2 to 14.1.3
{ | ||
"name": "@types/react-relay", | ||
"version": "14.1.2", | ||
"version": "14.1.3", | ||
"description": "TypeScript definitions for react-relay", | ||
@@ -41,4 +41,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-relay", | ||
}, | ||
"typesPublisherContentHash": "bd0f7f567bb8fe99ade51bb60e2cd226e6369c6c0bd9a825c0ba35ea20afbe2f", | ||
"typeScriptVersion": "4.1" | ||
"typesPublisherContentHash": "6489c4592cf2d7c44a30e30986ef4dfa997e2a3f47eba3db6cf0de3911ef84b3", | ||
"typeScriptVersion": "4.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 27 Sep 2022 04:02:59 GMT | ||
* Last updated: Fri, 30 Dec 2022 23:03:46 GMT | ||
* Dependencies: [@types/react](https://npmjs.com/package/@types/react), [@types/relay-runtime](https://npmjs.com/package/@types/relay-runtime) | ||
@@ -14,0 +14,0 @@ * Global values: none |
@@ -40,3 +40,3 @@ import { | ||
args: UseLoadMoreFunctionArgs, | ||
): // tslint:disable-next-line no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
[LoadMoreFn<TQuery>, boolean, DisposeFn]; | ||
@@ -43,0 +43,0 @@ |
@@ -24,3 +24,3 @@ import { GraphQLTaggedNode, OperationType } from 'relay-runtime'; | ||
parentFragmentRef: TKey, | ||
): // tslint:disable-next-line no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
usePaginationFragmentHookType<TQuery, TKey, KeyTypeData<TKey>>; | ||
@@ -31,3 +31,3 @@ | ||
parentFragmentRef: TKey | null, | ||
): // tslint:disable-next-line no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
usePaginationFragmentHookType<TQuery, TKey | null, KeyTypeData<TKey> | null>; |
@@ -14,3 +14,3 @@ import { GraphQLTaggedNode, OperationType } from 'relay-runtime'; | ||
fragmentRef: TKey, | ||
): // tslint:disable-next-line no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
useRefetchableFragmentHookType<TQuery, TKey, KeyTypeData<TKey>>; | ||
@@ -21,3 +21,3 @@ | ||
fragmentRef: TKey | null, | ||
): // tslint:disable-next-line no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
useRefetchableFragmentHookType<TQuery, TKey, KeyTypeData<TKey> | null>; |
@@ -107,3 +107,3 @@ import { | ||
componentDisplayName: string, | ||
): // tslint:disable-next-line:no-unnecessary-generics | ||
): // eslint-disable-next-line no-unnecessary-generics | ||
ReturnTypeNode<TQuery, TKey, InternalOptions>; |
@@ -5,5 +5,5 @@ import { GraphQLSubscriptionConfig, OperationType, requestSubscription } from 'relay-runtime'; | ||
// The actual subtype of OperationType is required to allow for type inference inside GraphQLSubscriptionConfig.s | ||
// tslint:disable-next-line no-unnecessary-generics | ||
// eslint-disable-next-line no-unnecessary-generics | ||
config: GraphQLSubscriptionConfig<TSubscriptionPayload>, | ||
requestSubscriptionFn?: typeof requestSubscription, | ||
): void; |