refactor(fetcher): sort custom request init props

This commit is contained in:
WebStreamr 2025-08-15 08:50:38 +00:00
parent b1a4b8017f
commit 2a5284d555
No known key found for this signature in database

View file

@ -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 {