From 2a5284d5555f022ced5770127b23c924a8961607 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Fri, 15 Aug 2025 08:50:38 +0000 Subject: [PATCH] refactor(fetcher): sort custom request init props --- src/utils/Fetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Fetcher.ts b/src/utils/Fetcher.ts index c13ff4b..8a353c4 100644 --- a/src/utils/Fetcher.ts +++ b/src/utils/Fetcher.ts @@ -44,13 +44,13 @@ interface FlareSolverrResult { } export type CustomRequestInit = RequestInit & { - timeoutsCountThrow?: number; noCache?: boolean; noFlareSolverr?: boolean; noProxyHeaders?: boolean; queueLimit?: number; queueTimeout?: number; timeout?: number; + timeoutsCountThrow?: number; }; export class Fetcher {