From 03e98ac667f92dbcbd0b90033b7a29695d2d2426 Mon Sep 17 00:00:00 2001 From: winixt Date: Thu, 17 Nov 2022 19:50:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AF=BC=E5=87=BA=20RequestOptions=20?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/fes-plugin-request/types.d.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 15900a96..423b9ce2 100644 --- a/package.json +++ b/package.json @@ -71,4 +71,4 @@ "path": "./node_modules/cz-conventional-changelog" } } -} +} \ No newline at end of file diff --git a/packages/fes-plugin-request/types.d.ts b/packages/fes-plugin-request/types.d.ts index d7bb4176..5332f339 100644 --- a/packages/fes-plugin-request/types.d.ts +++ b/packages/fes-plugin-request/types.d.ts @@ -15,6 +15,8 @@ interface RequestPluginOption { } } +export type RequestOptions = AxiosRequestConfig & RequestPluginOption; + export function request(url: string, data?: null | Record, options?: AxiosRequestConfig & RequestPluginOption ): Promise export function useRequest(url: string, data?: null | Record, options?: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref; errorRef: Ref; dataRef: Ref} declare module "@fesjs/fes" {