fix(@types/react-query): Correct refetchInterval types on ReactQueryProviderConfig (#40639)

This commit is contained in:
Boston Dell-Vandenberg 2019-11-26 18:01:21 -05:00 committed by Andrew Casey
parent 2df10e02e7
commit ab536d809e

View File

@ -130,7 +130,7 @@ export interface ReactQueryProviderConfig {
staleTime?: number;
cacheTime?: number;
refetchAllOnWindowFocus?: boolean;
refetchInterval?: boolean;
refetchInterval?: false | number;
suspense?: boolean;
}