@qso-soft/shared
Version:
Shared library for QSO-soft
11 lines (10 loc) • 373 B
TypeScript
import { BaseAxiosConfig, ProxyAgent, StringRecord } from '../../types';
interface GetAxiosConfig {
proxyAgent?: ProxyAgent;
timeout?: number;
headers?: StringRecord;
token?: string;
isScraper?: boolean;
}
export declare const getAxiosConfig: ({ proxyAgent, token, headers, timeout, isScraper, }: GetAxiosConfig) => Promise<BaseAxiosConfig>;
export {};