mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* fix: 优化类型提示 * fix: 添加 enums 接口类型声明 * feat: 配置插件api提示 Co-authored-by: wanchun <445436867@qq.com>
27 lines
1.3 KiB
TypeScript
27 lines
1.3 KiB
TypeScript
import { AxiosRequestConfig, AxiosResponse, AxiosError } from 'axios';
|
|
import {Ref} from 'vue';
|
|
|
|
|
|
type RequestInterceptor = (value: AxiosRequestConfig) => AxiosRequestConfig | [(value: AxiosRequestConfig) => AxiosRequestConfig, (error: any) => any];
|
|
type ResponseInterceptor = (value: AxiosResponse) => AxiosResponse | [(value: AxiosResponse) => AxiosResponse, (error: any) => any];
|
|
|
|
interface RequestPluginOption {
|
|
mergeRequest: boolean;
|
|
cache: boolean | {
|
|
type: 'ram' | 'sessionStorage' | 'localStorage',
|
|
cacheTime: number;
|
|
}
|
|
}
|
|
|
|
declare module "@fesjs/fes" {
|
|
interface PluginRuntimeConfig {
|
|
request?: {
|
|
dataHandler?(data: any, response: AxiosResponse): any;
|
|
errorHandler?(error: AxiosError | {type: string, msg: string, [key: string]: string}): void;
|
|
requestInterceptors?: RequestInterceptor[];
|
|
responseInterceptors?: ResponseInterceptor[];
|
|
} & AxiosRequestConfig;
|
|
}
|
|
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<any>
|
|
export function useRequest(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
|
|
} |