module-develop-kit 1.4.0 → 1.4.1
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/types/axios.d.ts
CHANGED
|
@@ -13,4 +13,18 @@ declare module "axios" {
|
|
|
13
13
|
*/
|
|
14
14
|
isAutoDecryptionResponse?: boolean;
|
|
15
15
|
}
|
|
16
|
+
|
|
17
|
+
// eslint-disable-next-line
|
|
18
|
+
export interface AxiosRequestConfig<D = any> {
|
|
19
|
+
/**
|
|
20
|
+
* 接口是否不需要自动加密
|
|
21
|
+
* @default false
|
|
22
|
+
*/
|
|
23
|
+
isNotAutoEncryption?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* 响应是否需要自动解密
|
|
26
|
+
* @default false
|
|
27
|
+
*/
|
|
28
|
+
isAutoDecryptionResponse?: boolean;
|
|
29
|
+
}
|
|
16
30
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UINT32_LE as h, StringType as k } from "../../../token-types/lib/index.js";
|
|
2
|
-
import D from "../../../../commonjs-virtual-dir/
|
|
2
|
+
import D from "../../../../commonjs-virtual-dir/browser2.js";
|
|
3
3
|
import { Signature as c, EndOfCentralDirectoryRecordToken as L, FileHeader as E, DataDescriptor as y, LocalFileHeaderToken as S } from "./ZipToken.js";
|
|
4
4
|
function m(s) {
|
|
5
5
|
const t = new Uint8Array(h.len);
|