mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 导出 RequestOptions 类型
This commit is contained in:
parent
907879eac5
commit
03e98ac667
@ -71,4 +71,4 @@
|
|||||||
"path": "./node_modules/cz-conventional-changelog"
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
2
packages/fes-plugin-request/types.d.ts
vendored
2
packages/fes-plugin-request/types.d.ts
vendored
@ -15,6 +15,8 @@ interface RequestPluginOption {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type RequestOptions = AxiosRequestConfig & RequestPluginOption;
|
||||||
|
|
||||||
export function request(url: string, data?: null | Record<string, any>, options?: AxiosRequestConfig & RequestPluginOption ): Promise<any>
|
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>}
|
export function useRequest(url: string, data?: null | Record<string, any>, options?: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
|
||||||
declare module "@fesjs/fes" {
|
declare module "@fesjs/fes" {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user