cleaned up random .js imports

This commit is contained in:
Bojan Kucera 2025-06-09 20:04:42 -04:00
parent 47109baff7
commit c172ecc6d3
19 changed files with 107 additions and 69 deletions

View file

@ -3,10 +3,10 @@ import type {
HttpClientConfig,
RequestConfig,
HttpResponse,
} from './types.js';
import { HttpError } from './types.js';
import { ProxyManager } from './proxy-manager.js';
import { AdapterFactory } from './adapters/index.js';
} from './types';
import { HttpError } from './types';
import { ProxyManager } from './proxy-manager';
import { AdapterFactory } from './adapters/index';
export class HttpClient {
private readonly config: HttpClientConfig;