We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f8f50f commit c334a46Copy full SHA for c334a46
src/core/request/modules/context/modules/params.ts
@@ -73,12 +73,12 @@ export default class RequestContext<D = unknown> {
73
/**
74
* Storage to cache the resolved request
75
*/
76
- readonly cache!: AbstractCache<Nullable<D>>;
+ readonly cache!: AbstractCache<string, Nullable<D>>;
77
78
79
* Storage to cache the request while it is pending a response
80
81
- readonly pendingCache: AbstractCache<
+ readonly pendingCache: AbstractCache<string,
82
ControllablePromise<RequestResponse<D>> | RequestResponse<D>
83
> = Object.cast(pendingCache);
84
0 commit comments