minidev 1.1.7 → 1.1.8
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/assets/web-sim/main.js +1 -1
- package/assets/web-sim/simulator/main.js +1 -1
- package/index.d.ts +6 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -238,10 +238,15 @@ declare module 'minidev' {
|
|
|
238
238
|
|
|
239
239
|
export interface IGenerateQrCodeArgs extends IClientTypeOptions, ICompileModeOptions, IAMPEOptions {
|
|
240
240
|
|
|
241
|
+
/**
|
|
242
|
+
* @deprecated 同 ignoreHttpDomainCheck
|
|
243
|
+
*/
|
|
244
|
+
ignoreHttpReqPermission?: boolean;
|
|
245
|
+
|
|
241
246
|
/**
|
|
242
247
|
* 忽略 http 请求白名单校验
|
|
243
248
|
*/
|
|
244
|
-
|
|
249
|
+
ignoreHttpDomainCheck?: boolean;
|
|
245
250
|
|
|
246
251
|
/**
|
|
247
252
|
* 忽略 webview 加载域名白名单校验
|