@zjlab-fe/util 0.6.0 → 0.6.2
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/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/types/browser-logger.d.ts +2 -2
- package/package.json +1 -1
|
@@ -6,9 +6,9 @@ interface RequestData {
|
|
|
6
6
|
method: string;
|
|
7
7
|
/** 请求入参 */
|
|
8
8
|
params: Record<string, any> | FormData | string | null | undefined;
|
|
9
|
-
/** 开始时间(
|
|
9
|
+
/** 开始时间(Date.now() 结果) */
|
|
10
10
|
startTime: number;
|
|
11
|
-
/** 结束时间(
|
|
11
|
+
/** 结束时间(Date.now() 结果) */
|
|
12
12
|
endTime: number;
|
|
13
13
|
/** 接口耗时(毫秒,保留1位小数) */
|
|
14
14
|
duration: number;
|