Skip to content

Commit c334a46

Browse files
committed
fixes
1 parent 7f8f50f commit c334a46

File tree

1 file changed

+2
-2
lines changed
  • src/core/request/modules/context/modules

1 file changed

+2
-2
lines changed

src/core/request/modules/context/modules/params.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ export default class RequestContext<D = unknown> {
7373
/**
7474
* Storage to cache the resolved request
7575
*/
76-
readonly cache!: AbstractCache<Nullable<D>>;
76+
readonly cache!: AbstractCache<string, Nullable<D>>;
7777

7878
/**
7979
* Storage to cache the request while it is pending a response
8080
*/
81-
readonly pendingCache: AbstractCache<
81+
readonly pendingCache: AbstractCache<string,
8282
ControllablePromise<RequestResponse<D>> | RequestResponse<D>
8383
> = Object.cast(pendingCache);
8484

0 commit comments

Comments
 (0)