fixed more lint issues

This commit is contained in:
Boki 2025-06-20 08:42:58 -04:00
parent 48503ce8d1
commit cc014de397
11 changed files with 42 additions and 11 deletions

View file

@ -30,7 +30,7 @@ export interface RequestConfig {
method?: HttpMethod;
url: string;
headers?: Record<string, string>;
data?: any; // Changed from 'body' to 'data' for consistency
data?: unknown; // Changed from 'body' to 'data' for consistency
timeout?: number;
proxy?: ProxyInfo | string; // Proxy can be a ProxyInfo object or a URL string
}