swr-utils.ts 299 B

123456789
  1. import { ProviderConfiguration, PublicConfiguration } from 'swr/dist/types';
  2. export type SWRConfigValue = Partial<PublicConfiguration> & Partial<ProviderConfiguration> & {
  3. provider?: (cache) => any | undefined,
  4. };
  5. export const swrGlobalConfiguration: SWRConfigValue = {
  6. errorRetryCount: 1,
  7. };