UNPKG

@casipe/react-service-provider

Version:
5 lines (4 loc) 316 B
import { AxiosResponse } from 'axios'; import { CacheConfig } from './interfaces'; export declare const writeOnCache: <T = any>(response: AxiosResponse<T>, config?: CacheConfig) => void; export declare const readFromCache: <T = any>(response: AxiosResponse<T>, config?: CacheConfig) => AxiosResponse<T> | undefined;