We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7638952 commit 00de614Copy full SHA for 00de614
index.d.ts
@@ -538,6 +538,8 @@ export function isCancel(value: any): value is Cancel;
538
539
export function all<T>(values: Array<T | Promise<T>>): Promise<T[]>;
540
541
+export function mergeConfig<D = any>(config1: AxiosRequestConfig<D>, config2: AxiosRequestConfig<D>): AxiosRequestConfig<D>;
542
+
543
export interface AxiosStatic extends AxiosInstance {
544
create(config?: CreateAxiosDefaults): AxiosInstance;
545
Cancel: CancelStatic;
@@ -555,6 +557,7 @@ export interface AxiosStatic extends AxiosInstance {
555
557
getAdapter: typeof getAdapter;
556
558
CanceledError: typeof CanceledError;
559
AxiosHeaders: typeof AxiosHeaders;
560
+ mergeConfig: typeof mergeConfig;
561
}
562
563
declare const axios: AxiosStatic;
0 commit comments