We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da0791e commit e320ca1Copy full SHA for e320ca1
packages/http/fetch/src/middlewares/customFetchHandler.ts
@@ -27,7 +27,7 @@ export class CustomFetchHandler implements Middleware {
27
constructor(private readonly customFetch: (input: string, init: RequestInit) => Promise<Response>) {}
28
29
/**
30
- * @inheritdoc
+ * @inheritdoc
31
*/
32
public async execute(url: string, requestInit: RequestInit): Promise<Response> {
33
return await this.customFetch(url, requestInit);
packages/http/fetch/src/middlewares/middleware.ts
@@ -12,8 +12,8 @@ export interface Middleware {
12
next: Middleware | undefined;
13
14
15
- * @public
16
- * @async
+ * @public
+ * @async
17
* Main method of the middleware.
18
* @param requestInit The Fetch RequestInit object.
19
* @param url The URL of the request.
0 commit comments