cache.d.ts 294 B

12
  1. import { Cache, ScopedMutator, ProviderConfiguration } from '../types';
  2. export declare const initCache: <Data = any>(provider: Cache<Data>, options?: Partial<ProviderConfiguration> | undefined) => [Cache<Data>, ScopedMutator<Data>, () => void] | [Cache<Data>, ScopedMutator<Data>] | undefined;