/** @type {Record>} */ export declare const cache: Record>; export interface PromiseWithState extends Promise { getIsPending: () => boolean; } /** * This function allow you to modify a JS Promise by adding some status properties. * @template {any} T * @param {Promise|PromiseWithState} promise * @return {PromiseWithState} */ export declare function makePromiseState(promise: Promise | PromiseWithState): PromiseWithState; //# sourceMappingURL=cache.d.ts.map