/** * @author Kuitos * @homepage https://github.com/kuitos/ * @since 2017-10-11 */ import { AxiosAdapter, AxiosPromise } from 'axios'; import { ICacheLike } from './cacheAdapterEnhancer'; export declare type RecordedCache = { timestamp: number; value?: AxiosPromise; }; export declare type Options = { threshold?: number; cache?: ICacheLike; }; export default function throttleAdapterEnhancer(adapter: AxiosAdapter, options?: Options): AxiosAdapter;