docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInstance.html
interface AxiosInstance {
defaults: Omit<AxiosDefaults<any>, "headers"> & {
headers: HeadersDefaults & { [key: string]: AxiosHeaderValue };
};
interceptors: {
request: AxiosInterceptorManager<InternalAxiosRequestConfig<any>>;
response: AxiosInterceptorManager<AxiosResponse<any, any>>;
};
delete<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>;
get<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>;
getUri(config?: AxiosRequestConfig<any>): string;
head<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>;
options<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>;
patch<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
patchForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
post<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
postForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
put<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
putForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>;
request<T = any, R = AxiosResponse<T, any>, D = any>(
config: AxiosRequestConfig<D>,
): Promise<R>;
<T = any, R = AxiosResponse<T, any>, D = any>(
config: AxiosRequestConfig<D>,
): Promise<R>;
<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>;
}
AxiosInstance<T = any, R = AxiosResponse<T, any>, D = any>(
config: AxiosRequestConfig<D>,
): Promise<R>
AxiosInstance<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionalconfig: AxiosRequestConfig<D>deletegetgetUriheadoptionspatchpatchFormpostpostFormputputFormrequest
defaults: Omit<AxiosDefaults<any>, "headers"> & {
headers: HeadersDefaults & { [key: string]: AxiosHeaderValue };
}
interceptors: {
request: AxiosInterceptorManager<InternalAxiosRequestConfig<any>>;
response: AxiosInterceptorManager<AxiosResponse<any, any>>;
}
delete<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionalconfig: AxiosRequestConfig<D>get<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionalconfig: AxiosRequestConfig<D>getUri(config?: AxiosRequestConfig<any>): string
Optionalconfig: AxiosRequestConfig<any>head<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionalconfig: AxiosRequestConfig<D>options<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionalconfig: AxiosRequestConfig<D>patch<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>patchForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>post<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>postForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>put<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>putForm<T = any, R = AxiosResponse<T, any>, D = any>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
Optionaldata: DOptionalconfig: AxiosRequestConfig<D>request<T = any, R = AxiosResponse<T, any>, D = any>(
config: AxiosRequestConfig<D>,
): Promise<R>
Member Visibility
ThemeOSLightDark
Properties defaultsinterceptors Methods deletegetgetUriheadoptionspatchpatchFormpostpostFormputputFormrequest