zzz-pc-view 0.0.78 → 0.0.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zzz-pc-view",
3
- "version": "0.0.78",
3
+ "version": "0.0.80",
4
4
  "main": "src/index.umd.js",
5
5
  "module": "src/index.es.js",
6
6
  "types": "src/index.d.ts",
@@ -5,7 +5,7 @@ import { LoadUtilResponse } from './loadUtil';
5
5
  * 这个接口包含取消请求和发送请求的方法。
6
6
  * @interface RequestUtil
7
7
  */
8
- interface RequestUtil {
8
+ export interface RequestUtil {
9
9
  /**
10
10
  * 定义一个方法,用于取消当前的请求。
11
11
  * 这个方法会检查是否存在当前的请求对象,如果存在,则取消请求并将请求对象重置为 undefined。
@@ -52,4 +52,3 @@ export type RequestUtilResponse<T extends boolean = true> = T extends false ? Re
52
52
  * @description 在请求完成后,它会调用 final 方法,并传递一个布尔值表示请求是否被取消。
53
53
  */
54
54
  export declare const useRequestUtil: <E extends boolean = true>(endableLoadStatus?: E) => RequestUtilResponse<E>;
55
- export {};