@haluo/util 2.1.1 → 2.1.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/modules/app-call/core.js +5 -2
- package/dist/modules/app-call/extensions.d.ts +1 -1
- package/dist/modules/app-call/extensions.js +35 -38
- package/dist/modules/app-call/partner-bridge.d.ts +5 -0
- package/dist/modules/app-call/partner-bridge.js +68 -0
- package/dist/modules/tools/index.d.ts +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -74,8 +74,10 @@ export class AppCallCoreClass {
|
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
76
|
try {
|
|
77
|
+
console.log('this.isAndroid', this.isAndroid);
|
|
77
78
|
if (this.isAndroid || this.isHarmonyos) {
|
|
78
79
|
if (this.has(name)) {
|
|
80
|
+
console.log('has', name);
|
|
79
81
|
data = window.NativeCall?.[name]?.apply(window.NativeCall, arr) || null;
|
|
80
82
|
if (this.showTip && window.Toast) {
|
|
81
83
|
window.Toast({
|
|
@@ -97,10 +99,11 @@ export class AppCallCoreClass {
|
|
|
97
99
|
}
|
|
98
100
|
}
|
|
99
101
|
catch (error) {
|
|
102
|
+
console.log('error', error);
|
|
100
103
|
if (this.showTip && window.Toast) {
|
|
101
104
|
window.Toast({
|
|
102
105
|
position: 'middle',
|
|
103
|
-
message:
|
|
106
|
+
message: error + '',
|
|
104
107
|
duration: 5000
|
|
105
108
|
});
|
|
106
109
|
}
|
|
@@ -147,7 +150,7 @@ export class AppCallCoreClass {
|
|
|
147
150
|
allParamsToString(params) {
|
|
148
151
|
const keys = Object.keys(params);
|
|
149
152
|
keys.forEach((key) => {
|
|
150
|
-
params[key] =
|
|
153
|
+
params[key] = params[key] + '';
|
|
151
154
|
});
|
|
152
155
|
return params;
|
|
153
156
|
}
|
|
@@ -177,7 +177,7 @@ export declare function createAllExtensions(appCall: AppCallInstance, config: Ap
|
|
|
177
177
|
onBackAction(callback: (res: any) => void): any;
|
|
178
178
|
getStatusBarHeight(params: any, callback: (res: any) => void): any;
|
|
179
179
|
loadLocalWeb(params?: any): any;
|
|
180
|
-
getExamVipQuestions(params: any
|
|
180
|
+
getExamVipQuestions(params: any): any;
|
|
181
181
|
saveEmCoupon(params?: any): any;
|
|
182
182
|
getEmCoupon(params: any, callback?: ((res: any) => void) | undefined): any;
|
|
183
183
|
getUserWinInfo(params: any): any;
|
|
@@ -32,7 +32,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
32
32
|
uid: JSON.parse(window.localStorage?.user || '{}').uid || ''
|
|
33
33
|
}) ||
|
|
34
34
|
{};
|
|
35
|
-
return appCall.call('pay', JSON.stringify(params), window.bridge.payCallback);
|
|
35
|
+
return appCall.call('pay', JSON.stringify(params), window.bridge.payCallback || function () { });
|
|
36
36
|
},
|
|
37
37
|
// 支付(新版本)
|
|
38
38
|
payNew(params = {}) {
|
|
@@ -43,12 +43,12 @@ export function createAllExtensions(appCall, config) {
|
|
|
43
43
|
wayCode: params.wayCode || ''
|
|
44
44
|
}) ||
|
|
45
45
|
{};
|
|
46
|
-
return appCall.call('payNew', JSON.stringify(params), window.bridge.payNewCallback);
|
|
46
|
+
return appCall.call('payNew', JSON.stringify(params), window.bridge.payNewCallback || function () { });
|
|
47
47
|
},
|
|
48
48
|
// ========== 基础接口 ==========
|
|
49
49
|
// 弹出提示
|
|
50
50
|
alert(text) {
|
|
51
|
-
const textStr = typeof text === 'object' ? JSON.stringify(text) :
|
|
51
|
+
const textStr = typeof text === 'object' ? JSON.stringify(text) : text + '';
|
|
52
52
|
if (((isAndroid || isHarmonyos) && !window.NativeCall) ||
|
|
53
53
|
(isIOS && !iOSInterface)) {
|
|
54
54
|
console.log('AppCall.alert:', textStr);
|
|
@@ -199,7 +199,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
199
199
|
let params = JSON.stringify(obj);
|
|
200
200
|
params = JSON.parse(params);
|
|
201
201
|
console.log('话题信息:', params);
|
|
202
|
-
return appCall.call('newCircle', JSON.stringify(params), window.bridge.circleRelease);
|
|
202
|
+
return appCall.call('newCircle', JSON.stringify(params), window.bridge.circleRelease || function () { });
|
|
203
203
|
})
|
|
204
204
|
.catch((err) => {
|
|
205
205
|
console.log(err);
|
|
@@ -209,7 +209,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
209
209
|
publishWatchExperience(obj) {
|
|
210
210
|
let params = JSON.stringify(obj);
|
|
211
211
|
params = JSON.parse(params);
|
|
212
|
-
return appCall.call('newCircle', JSON.stringify(params), window.bridge.circleRelease);
|
|
212
|
+
return appCall.call('newCircle', JSON.stringify(params), window.bridge.circleRelease || function () { });
|
|
213
213
|
},
|
|
214
214
|
// 打开app指定页面
|
|
215
215
|
navigate(action = {}) {
|
|
@@ -222,16 +222,17 @@ export function createAllExtensions(appCall, config) {
|
|
|
222
222
|
relatedId: action.action || '',
|
|
223
223
|
link: action.link || '',
|
|
224
224
|
jumpUrl: fileToHttps(action.jumpUrl) || '',
|
|
225
|
-
urlParam: action.urlParam || {}
|
|
225
|
+
urlParam: action.urlParam || {},
|
|
226
|
+
frompage: action.frompage || ''
|
|
226
227
|
}, action);
|
|
227
228
|
console.log(action);
|
|
228
|
-
return appCall.call('navigate', JSON.stringify(action), window.bridge.navigateRelease);
|
|
229
|
+
return appCall.call('navigate', JSON.stringify(action), window.bridge.navigateRelease || function () { });
|
|
229
230
|
},
|
|
230
231
|
// 根据能量活动跳转指定页面
|
|
231
232
|
navigateByEnergy(action) {
|
|
232
233
|
if (action && action.type) {
|
|
233
234
|
action.relationType = action.type;
|
|
234
|
-
return appCall.call('navigateByEnergy', JSON.stringify(action), window.bridge.messageRelease);
|
|
235
|
+
return appCall.call('navigateByEnergy', JSON.stringify(action), window.bridge.messageRelease || function () { });
|
|
235
236
|
}
|
|
236
237
|
},
|
|
237
238
|
// 跳转指定页面或链接,返回当前页面需告知H5
|
|
@@ -245,7 +246,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
245
246
|
orderNum: action.orderNum,
|
|
246
247
|
shopId: action.shopId
|
|
247
248
|
});
|
|
248
|
-
return appCall.call('messageInteraction', JSON.stringify(action), window.bridge.messageRelease);
|
|
249
|
+
return appCall.call('messageInteraction', JSON.stringify(action), window.bridge.messageRelease || function () { });
|
|
249
250
|
},
|
|
250
251
|
// 获取预约价格
|
|
251
252
|
getReservePrice(action = {}) {
|
|
@@ -318,7 +319,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
318
319
|
id: params.id,
|
|
319
320
|
carId: params.carId
|
|
320
321
|
};
|
|
321
|
-
return appCall.call('openCarScore', JSON.stringify(params), window.bridge.openCarScoreRelease);
|
|
322
|
+
return appCall.call('openCarScore', JSON.stringify(params), window.bridge.openCarScoreRelease || function () { });
|
|
322
323
|
},
|
|
323
324
|
// 分享功能
|
|
324
325
|
share(params = {}) {
|
|
@@ -365,7 +366,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
365
366
|
},
|
|
366
367
|
// 分享活动
|
|
367
368
|
shareActivity(id) {
|
|
368
|
-
id = parseInt(
|
|
369
|
+
id = parseInt(id + '');
|
|
369
370
|
setTimeout(function () {
|
|
370
371
|
post();
|
|
371
372
|
}, 100);
|
|
@@ -380,10 +381,10 @@ export function createAllExtensions(appCall, config) {
|
|
|
380
381
|
// 车辆认证
|
|
381
382
|
vehicleCertification(params) {
|
|
382
383
|
if (params) {
|
|
383
|
-
return appCall.call('vehicleCertification', JSON.stringify(params), window.bridge.vehicleCertificationRelease);
|
|
384
|
+
return appCall.call('vehicleCertification', JSON.stringify(params), window.bridge.vehicleCertificationRelease || function () { });
|
|
384
385
|
}
|
|
385
386
|
else {
|
|
386
|
-
return appCall.call('vehicleCertification', window.bridge.vehicleCertificationRelease);
|
|
387
|
+
return appCall.call('vehicleCertification', window.bridge.vehicleCertificationRelease || function () { });
|
|
387
388
|
}
|
|
388
389
|
},
|
|
389
390
|
/**
|
|
@@ -392,12 +393,12 @@ export function createAllExtensions(appCall, config) {
|
|
|
392
393
|
* num = 1个数 ,限制 1
|
|
393
394
|
*/
|
|
394
395
|
iosOpenInput(params) {
|
|
395
|
-
return appCall.call('iosOpenInput', window.bridge.iosOpenInputRelease);
|
|
396
|
+
return appCall.call('iosOpenInput', window.bridge.iosOpenInputRelease || function () { });
|
|
396
397
|
},
|
|
397
398
|
// 打开上传图片
|
|
398
399
|
getOSPhotosWithCount(params) {
|
|
399
400
|
if (isIOS) {
|
|
400
|
-
return appCall.call('getOSPhotosWithCount', JSON.stringify(params), window.bridge.getOSPhotosWithCountRelease);
|
|
401
|
+
return appCall.call('getOSPhotosWithCount', JSON.stringify(params), window.bridge.getOSPhotosWithCountRelease || function () { });
|
|
401
402
|
}
|
|
402
403
|
else {
|
|
403
404
|
return appCall.call('getOSPhotosWithCount', JSON.stringify(params));
|
|
@@ -409,13 +410,13 @@ export function createAllExtensions(appCall, config) {
|
|
|
409
410
|
},
|
|
410
411
|
// 调用原生评论
|
|
411
412
|
goToComment(params) {
|
|
412
|
-
return appCall.call('toComment', JSON.stringify(params), window.bridge.updataCircleRelease);
|
|
413
|
+
return appCall.call('toComment', JSON.stringify(params), window.bridge.updataCircleRelease || function () { });
|
|
413
414
|
},
|
|
414
415
|
// 发送各种详情接口
|
|
415
416
|
informationData(detail) {
|
|
416
417
|
const me = appCall;
|
|
417
418
|
setTimeout(function () {
|
|
418
|
-
return me.call('informationData', JSON.stringify(detail), window.bridge.updataCircleRelease);
|
|
419
|
+
return me.call('informationData', JSON.stringify(detail), window.bridge.updataCircleRelease || function () { });
|
|
419
420
|
}, 100);
|
|
420
421
|
},
|
|
421
422
|
// 设置加密
|
|
@@ -442,15 +443,15 @@ export function createAllExtensions(appCall, config) {
|
|
|
442
443
|
},
|
|
443
444
|
// 上传视频操作
|
|
444
445
|
uploadVideo(params) {
|
|
445
|
-
return appCall.call('uploadVideo', JSON.stringify(params), window.bridge.uploadVideoRelease);
|
|
446
|
+
return appCall.call('uploadVideo', JSON.stringify(params), window.bridge.uploadVideoRelease || function () { });
|
|
446
447
|
},
|
|
447
448
|
// 调用app的选择省市
|
|
448
449
|
getProvinces(params) {
|
|
449
|
-
return appCall.call('getProvinces', JSON.stringify(params), window.bridge.provincesRelease);
|
|
450
|
+
return appCall.call('getProvinces', JSON.stringify(params), window.bridge.provincesRelease || function () { });
|
|
450
451
|
},
|
|
451
452
|
// 开启系统定位权限
|
|
452
453
|
setLocationPermission() {
|
|
453
|
-
return appCall.call('locationPermission', window.bridge.locationPermissionRelease);
|
|
454
|
+
return appCall.call('locationPermission', window.bridge.locationPermissionRelease || function () { });
|
|
454
455
|
},
|
|
455
456
|
// 通知app发送时长埋点
|
|
456
457
|
postDurationTack(params) {
|
|
@@ -477,7 +478,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
477
478
|
},
|
|
478
479
|
// 调app激励抽奖
|
|
479
480
|
requestAdvideo(action = {}) {
|
|
480
|
-
return appCall.call('requestAdvideo', JSON.stringify(action), window.bridge.adVideoPlayedRelease);
|
|
481
|
+
return appCall.call('requestAdvideo', JSON.stringify(action), window.bridge.adVideoPlayedRelease || function () { });
|
|
481
482
|
},
|
|
482
483
|
// 打开外部商品链接
|
|
483
484
|
openMall(action = {}) {
|
|
@@ -517,7 +518,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
517
518
|
},
|
|
518
519
|
// 跳转到发布文章(ugc 活动)
|
|
519
520
|
jumpToReleaseStoryUgc(params = {}) {
|
|
520
|
-
return appCall.call('jumpToReleaseStoryUgc', JSON.stringify(params), window.bridge.handleUGCRefreshPageEvent);
|
|
521
|
+
return appCall.call('jumpToReleaseStoryUgc', JSON.stringify(params), window.bridge.handleUGCRefreshPageEvent || function () { });
|
|
521
522
|
},
|
|
522
523
|
// 跳转到发布视频
|
|
523
524
|
jumpToReleaseVideo(params = {}) {
|
|
@@ -622,11 +623,11 @@ export function createAllExtensions(appCall, config) {
|
|
|
622
623
|
},
|
|
623
624
|
// 浏览记录记录数量
|
|
624
625
|
viewHistoryCount(day) {
|
|
625
|
-
return appCall.call('viewHistoryCount', day, window.bridge.viewHistoryCountRelease);
|
|
626
|
+
return appCall.call('viewHistoryCount', day, window.bridge.viewHistoryCountRelease || function () { });
|
|
626
627
|
},
|
|
627
628
|
// 搜索记录数量
|
|
628
629
|
searchHistoryCount() {
|
|
629
|
-
return appCall.call('searchHistoryCount', window.bridge.searchHistoryCountRelease);
|
|
630
|
+
return appCall.call('searchHistoryCount', window.bridge.searchHistoryCountRelease || function () { });
|
|
630
631
|
},
|
|
631
632
|
// 摩宁定位导航
|
|
632
633
|
mnPositionNavigation(params = {}) {
|
|
@@ -634,7 +635,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
634
635
|
},
|
|
635
636
|
// 摩宁选址
|
|
636
637
|
mnSiteSelection(params = {}) {
|
|
637
|
-
return appCall.call('mnSiteSelection', JSON.stringify(params), window.bridge.mnSiteSelection);
|
|
638
|
+
return appCall.call('mnSiteSelection', JSON.stringify(params), window.bridge.mnSiteSelection || function () { });
|
|
638
639
|
},
|
|
639
640
|
// 跳转小程序
|
|
640
641
|
jumpApplet(url = '') {
|
|
@@ -642,7 +643,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
642
643
|
},
|
|
643
644
|
// 摩宁地图展示定位
|
|
644
645
|
mnPositionSelection(params = {}) {
|
|
645
|
-
return appCall.call('mnPositionSelection', JSON.stringify(params), window.bridge.mnPositionSelection);
|
|
646
|
+
return appCall.call('mnPositionSelection', JSON.stringify(params), window.bridge.mnPositionSelection || function () { });
|
|
646
647
|
},
|
|
647
648
|
// 点评官调到摩友圈桥
|
|
648
649
|
commentOfficerTab(params = '') {
|
|
@@ -658,7 +659,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
658
659
|
},
|
|
659
660
|
// 开启监听返回的桥
|
|
660
661
|
interactivePopEnable(params = 2) {
|
|
661
|
-
return appCall.call('interactivePopEnable', params, window.bridge.interactivePopEnableRelease);
|
|
662
|
+
return appCall.call('interactivePopEnable', params, window.bridge.interactivePopEnableRelease || function () { });
|
|
662
663
|
},
|
|
663
664
|
// ios开启监听返回的桥
|
|
664
665
|
interactiveSideslip(params = 2) {
|
|
@@ -795,6 +796,8 @@ export function createAllExtensions(appCall, config) {
|
|
|
795
796
|
}
|
|
796
797
|
try {
|
|
797
798
|
data = JSON.parse(data || '{}');
|
|
799
|
+
const info = window.localStorage && window.localStorage.deviceData;
|
|
800
|
+
const deviceDataInfo = JSON.parse(info !== 'undefined' ? info || '{}' : '{}');
|
|
798
801
|
if (config.env) {
|
|
799
802
|
const env = config.env;
|
|
800
803
|
if (data.bundleId === env.emotofineBundleId) {
|
|
@@ -806,6 +809,7 @@ export function createAllExtensions(appCall, config) {
|
|
|
806
809
|
window.isdronefine = true;
|
|
807
810
|
}
|
|
808
811
|
}
|
|
812
|
+
data.deviceId = data?.deviceId || deviceDataInfo?.deviceId || '';
|
|
809
813
|
window.localStorage?.setItem('deviceData', JSON.stringify(data));
|
|
810
814
|
console.log('deviceData', data);
|
|
811
815
|
}
|
|
@@ -825,8 +829,8 @@ export function createAllExtensions(appCall, config) {
|
|
|
825
829
|
params.needPermission = params.needPermission !== undefined ? params.needPermission : 1;
|
|
826
830
|
setTimeout(() => {
|
|
827
831
|
return appCall.isAppVersionGreatThan?.(version)
|
|
828
|
-
? appCall.call('getLocation', JSON.stringify(params), window.bridge.getLocationCallback)
|
|
829
|
-
: appCall.call('getLocation', window.bridge.getLocationCallback);
|
|
832
|
+
? appCall.call('getLocation', JSON.stringify(params), window.bridge.getLocationCallback || function () { })
|
|
833
|
+
: appCall.call('getLocation', window.bridge.getLocationCallback || function () { });
|
|
830
834
|
}, 300);
|
|
831
835
|
},
|
|
832
836
|
// 获取客户端平台(1=Android,2=iOS,3=WAP,31=鸿蒙)
|
|
@@ -1173,15 +1177,8 @@ export function createAllExtensions(appCall, config) {
|
|
|
1173
1177
|
return appCall.call('loadLocalWeb', JSON.stringify(params));
|
|
1174
1178
|
},
|
|
1175
1179
|
// 获取考试VIP题目
|
|
1176
|
-
getExamVipQuestions(params
|
|
1177
|
-
|
|
1178
|
-
getExamVipQuestionsCallback(res) {
|
|
1179
|
-
if (typeof callback === 'function') {
|
|
1180
|
-
callback(res);
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
});
|
|
1184
|
-
return appCall.call('getExamVipQuestions', params, window.bridge.getExamVipQuestionsCallback);
|
|
1180
|
+
getExamVipQuestions(params) {
|
|
1181
|
+
return appCall.call('getExamVipQuestions', params, window.bridge.getExamVipQuestionsCallback || function () { });
|
|
1185
1182
|
},
|
|
1186
1183
|
// 保存优惠券
|
|
1187
1184
|
saveEmCoupon(params = {}) {
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Partner Bridge - 外部对接使用的简化版 AppCall
|
|
3
|
+
*/
|
|
4
|
+
import { createAppCall } from './index';
|
|
5
|
+
/**
|
|
6
|
+
* 创建简化版的 AppCall(用于外部对接)
|
|
7
|
+
*/
|
|
8
|
+
export function createPartnerBridge(config = {}) {
|
|
9
|
+
const bridgeConfig = {
|
|
10
|
+
projectName: config.projectName || '摩托范',
|
|
11
|
+
domain: config.domain || '58moto.com',
|
|
12
|
+
supportHarmonyos: config.supportHarmonyos ?? true,
|
|
13
|
+
...config
|
|
14
|
+
};
|
|
15
|
+
const appCall = createAppCall(bridgeConfig);
|
|
16
|
+
// 添加外部对接专用的方法
|
|
17
|
+
appCall.extend({
|
|
18
|
+
/**
|
|
19
|
+
* 唤醒阿里金融的实名认证
|
|
20
|
+
* -- 调用接口:expands/realuser/getToken 获取token
|
|
21
|
+
* -- faceAuthback 回调接收 res: { token, bizId }
|
|
22
|
+
*/
|
|
23
|
+
faceAuth(params = {}) {
|
|
24
|
+
window.bridge = window.bridge || {};
|
|
25
|
+
window.bridge.faceAuthback = window.bridge.faceAuthback || function () { };
|
|
26
|
+
return appCall.call('faceAuth', JSON.stringify(params), window.bridge.faceAuthback);
|
|
27
|
+
},
|
|
28
|
+
/**
|
|
29
|
+
* 获取app设备信息(Promise 版本)
|
|
30
|
+
*/
|
|
31
|
+
getDeviceData() {
|
|
32
|
+
return new Promise((resolve, reject) => {
|
|
33
|
+
const _callback = (data) => {
|
|
34
|
+
const ua = navigator.userAgent.toLowerCase();
|
|
35
|
+
const isIOS = ua.indexOf('mac') > -1;
|
|
36
|
+
if (data && typeof data === 'string') {
|
|
37
|
+
if (isIOS) {
|
|
38
|
+
data = data.replace(/\n/g, '').replace(/\s*/g, '');
|
|
39
|
+
}
|
|
40
|
+
try {
|
|
41
|
+
data = JSON.parse(data || '{}');
|
|
42
|
+
}
|
|
43
|
+
catch (e) {
|
|
44
|
+
reject('解析失败');
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
data ? resolve(data) : reject('获取失败');
|
|
49
|
+
};
|
|
50
|
+
appCall.call('getDeviceData', _callback);
|
|
51
|
+
});
|
|
52
|
+
},
|
|
53
|
+
/**
|
|
54
|
+
* 获取定位信息(Promise 版本)
|
|
55
|
+
*/
|
|
56
|
+
getLocation(params = {}) {
|
|
57
|
+
return new Promise((resolve, reject) => {
|
|
58
|
+
window.bridge = window.bridge || {};
|
|
59
|
+
window.bridge.getLocationCallback = (data) => {
|
|
60
|
+
data ? resolve(data) : reject('获取失败');
|
|
61
|
+
};
|
|
62
|
+
params.needPermission = params.needPermission !== undefined ? params.needPermission : 1;
|
|
63
|
+
appCall.call('getLocation', JSON.stringify(params), window.bridge.getLocationCallback);
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
return appCall;
|
|
68
|
+
}
|
|
@@ -51,13 +51,13 @@ declare class ToolsClass {
|
|
|
51
51
|
* @param {String} url
|
|
52
52
|
* @return {Promise}
|
|
53
53
|
*/
|
|
54
|
-
loadJs(url: string):
|
|
54
|
+
loadJs(url: string): Promise<unknown> | Error;
|
|
55
55
|
/**
|
|
56
56
|
* 动态加载样式
|
|
57
57
|
* @param {String} url
|
|
58
58
|
* @return {Promise}
|
|
59
59
|
*/
|
|
60
|
-
loadCss(url: string):
|
|
60
|
+
loadCss(url: string): Promise<unknown> | Error;
|
|
61
61
|
/**
|
|
62
62
|
* 蒙层显示后,html禁止滚动操作
|
|
63
63
|
* @param {String} className
|
|
@@ -76,7 +76,7 @@ declare class ToolsClass {
|
|
|
76
76
|
* @param {String} str
|
|
77
77
|
* @return {String}
|
|
78
78
|
*/
|
|
79
|
-
clipboard(str: string):
|
|
79
|
+
clipboard(str: string): Promise<void> | Error;
|
|
80
80
|
/**
|
|
81
81
|
* 首字母大写
|
|
82
82
|
* @param {String} str
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/modules/cookie/index.ts","../src/types/index.ts","../src/modules/date/index.ts","../src/modules/dom/index.ts","../src/modules/number/index.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/common.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/array.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/collection.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/date.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/function.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/lang.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/math.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/number.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/object.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/seq.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/string.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/util.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/index.d.ts","../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/clonedeep.d.ts","../node_modules/.pnpm/clipboard-copy@4.0.1/node_modules/clipboard-copy/index.d.ts","../src/modules/tools/index.ts","../src/modules/filter/index.ts","../src/modules/format/index.ts","../src/modules/match/index.ts","../node_modules/.pnpm/@types+qs@6.14.0/node_modules/@types/qs/index.d.ts","../src/modules/open-app/index.ts","../src/modules/track/types.ts","../src/modules/track/index.ts","../src/modules/upload/alioss.ts","../src/modules/upload/index.ts","../node_modules/.pnpm/@types+uuid@9.0.8/node_modules/@types/uuid/index.d.ts","../src/modules/monitor/utils/tracker.ts","../src/modules/monitor/lib/jserror.ts","../src/modules/monitor/lib/xhr.ts","../src/modules/monitor/index.ts","../src/modules/app-call/types.ts","../src/modules/app-call/core.ts","../src/modules/app-call/extensions.ts","../src/modules/app-call/configs.ts","../src/modules/app-call/offline.ts","../src/modules/app-call/index.ts","../src/index.ts","../src/modules/monitor/utils/onload.ts","../src/modules/monitor/lib/timing.ts","../node_modules/.pnpm/raven-js@3.27.2/node_modules/raven-js/typescript/raven.d.ts","../src/modules/sentry/index.ts","../src/types/lrz.d.ts","../node_modules/.pnpm/@types+ali-oss@6.16.13/node_modules/@types/ali-oss/index.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/@types+webpack-env@1.18.8/node_modules/@types/webpack-env/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"dc695f0aaa6adebd925b30293f26a7cb88e1839f2b7911f95d3b2cc8abfc47e4","signature":"7fce176ca45f39bea6de45fca9cb4d4de6b5f03beb9008a22cf8217525f78627"},{"version":"a9d14a45c92f8e273173b453778546a0fbfa269ae74a842fd4ae6a3f397eb18a","signature":"f48fe82fa0efa3bbb0431ae08739f84f9ef961df8328f09c91c1d5445b0956e5"},{"version":"f70addce4b3ae8bdef36b5926d8a79d5b14a9868690ee027945406c8c86d0fe4","signature":"817ebf896260d1919dbcea89f4c06c93eb5b30e7b81a85d0be2553b1af37f593"},{"version":"304d9dec4537e825c2d5ed3a8c6c0068d389ed4c4f8d543cf88ecd7d21f34eb7","signature":"dd75ef178e25f2ffae968fcfb4a90790a2d893da7a9371421085b489f302c8af"},{"version":"23902c32676562355430fab89c7d59361a96ecdf8b9a2b2c943a14c635234c04","signature":"1d9b3d47e3a784ce62b76ab972fe5e5facfed9d8117a3d96d7bceadfc59a3519"},"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","98acc316756389efdc925de9169c826e4c40a6290fd0ed96b2d5a511b900b486","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","a33ea06913b712c529662bee7fd75959781267cf8a307902cc7761307fec0337","fc4048cf3c48b6766189ac0fd8817d961a1fdd0df72b161ecedb335b7e6c5590",{"version":"61b8520deff99c27812aed6f1d662cab400ecdcddda720a07388d3f486a04f1e","signature":"0f211f4d50fa24bf87367c21cbef7a93170864f44f4e59620079f3f540b44e64"},{"version":"2d81c238df55452b6c3204c5dae1f40175ddf4e9321bd5154424a25065c02407","signature":"0a1fd2c928d008aadd853e38ccdc138fded03d0820c185bc1c11c86347c8fb54"},{"version":"fc2120bcfa09045659a4d9d3dbbc349dbcb7a49103ee6f0dd5b8f5cf7455aed4","signature":"97f54c9bf6cf09f40f379bdc209c05afdfd117d531bb0a6d27960a3056c5dcac"},{"version":"bb09a650e7dc89f3e02dd7610c3643922251d3e3200014e838300f4109f2c75e","signature":"36440bec26b6e587a7e0a2588b94761cdac17878fda18f92e9199a6a1ba29173"},"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb",{"version":"21d6c3d7e1fe7b17012207b000be4d719a71e5af6c49950714c16eb8d5b1b7f8","signature":"5caf3f9cbc4ee9e4bfc356223cd7c2dcfb062b0c4a3f5375537214a6deef6dc4","affectsGlobalScope":true},{"version":"ad5ffa49ee8c158aff18f40c65c984d7daa7021d87303b52677c3d722391cb95","signature":"efdec51502c59314c2d7c070acca5ad6b48d6ca4c3cc634d5c72c25afb5dcb48"},{"version":"5e7df4757bfe65b504a7cb00fdd497fa3a3da3e8673a18f2b829452d7c9f51a8","signature":"c1db0a188dc97965937541a0b76c7c836883975650aa5b24db4e5721d79a1111"},{"version":"df41126bc45c145117823ea49bd7262f96d0a16655d957c6e48ffb2fc9eba123","signature":"80f592b4e0531204883fcf49edf4d4b2273589d38713180c6d97846657c14b3e"},{"version":"78504b26bea4444c9a4a2f59d5c18f3458a56aa37f9f75ae9e8fa4c075022cc7","signature":"6e12aea70002d3551796488fb0beae3c6a5bb41db7764aa02f34612fa96356b5"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"e2f4badb383f65161717b8319268b002dade0155ddb0dbf14f65a2ef617447cc","signature":"9ca29ae68f5d126f93223c2d4c9c5ef5a05273151bab98a690f3717b1f7abe50"},{"version":"e76654213bd70e754d3ff751e01fd1bc215b158e6c6564e7a1796378c3eb5ca1","signature":"50b84a52a45ed9004d3fdc81edfd3b1f54e36b54ba6d4d859b46fd0d2286d0ec"},{"version":"28e8199543970723a78f93332073bd5552020ffe4b46ad7bdef221110fcf36fc","signature":"82284759683c8364a7396ec677bc06a24e3e9b37321546637091395f855b8a94"},{"version":"dc99244d797634d90c77ac350e823170f4e13afa7e32f1d00261b8568c4949a0","signature":"146ca9ab3daaa20ef0d120be36eb6cf3a55829a0e22b3592c09e4c6847b06070"},{"version":"7325535c80b6d29a5d8b097d9d34d953f02937302303a57b521056133a7e9914","signature":"566c2f4e6fe3a8dc256338b3641a9760b4ef1300b4f5826d5d865cac1d935d3f"},{"version":"fe68468c32ba94a96cf28444844b9d1f57f37b542eb7ee55d64a26da1d9edee9","signature":"30b44f3fff7c842278cca61e5c8168534f8186cf5d5e44824944f22e9ff9e2a7","affectsGlobalScope":true},{"version":"ec6d9cd6091707a1776817f02bdc4a149284e12854c58fae06620415a23ebb24","signature":"2d63f2350dedfcd2f85ee5f739370f0702c0433a21cd846dd8d85464e7b46f89"},{"version":"cb1ce37d0620b2c8cfec3e18c60b6804f0eb7a357b5ae8c3c06ed993d14cb65f","signature":"6666f48a213371613d90844f0aac19e371cc32ab346d02ea0f68ce7884edf7a2"},{"version":"73fbc306770bc498ca720c6e7b8ba80c65000d62de204b5c15b8bec64bc82de5","signature":"75ffe27ccdea966519000a5d2099296976b452869036495cd418b5092d00c728"},{"version":"12da92dfeeb0b70c15f24c32011bf799748cb2f479eb933737af69eeaedce891","signature":"8bf7fb7da090431c93c2000e4347e5d108295de7e3b6b66081f3ea6f8c4055e9"},{"version":"81d2a7eec88bd902b6e61cb474af4246af905dc77581f1dd2a0f5532d6cb1cd1","signature":"be8dfc16bb4d0bf346fc6db02e586e4b9e23acbbeec044d8cd4dfb0ecaccfbd6"},{"version":"7e3ed122f615d0e8de55465669ca2d22cdde9227375fc12049b7f9e4734b5d3e","signature":"4a6b83afb13c736939b35f93c21ecec0c55e0d2a15574f8e9c5ac5a2c52ff46f"},{"version":"5ed4fa521ce471b9e786d865fcbfcab45d807411c572d5f8594f05249f610412","signature":"4128dab7aa6227a2624c65caf68a0205216d163a67eee2f4302d92caef3bcbce"},"552a05d8ed3e1b634675ad491b3afb62631212d1d8d3df1bb9cfd808def696cb",{"version":"86d3111483e952d25e40f365f6318d4dab7c5932cc87b9e5acff7498332833d0","signature":"64743a220e1a5fe4d9dc003205cfb06980fd3f1e875ddc1101f9aecbcdd84762"},"bf6c5393c3d7e1ade93ce1a58813f4b8a1151ffda4b0f13bcc0e78476ff64c4f","3cee95a3d958bf994db4705fbe6b7ae503867445972247adc49626f7fd16d46a","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5",{"version":"ebf3ec92378d6eae07f236180ac6caba814464947ee2c90b347202e9f35c6379","affectsGlobalScope":true}],"options":{"declaration":true,"declarationDir":"./","esModuleInterop":true,"module":99,"noUnusedLocals":true,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[73],[61,63,64,65,66,67,68,69,70,71,72,73],[61,62,64,65,66,67,68,69,70,71,72,73],[62,63,64,65,66,67,68,69,70,71,72,73],[61,62,63,65,66,67,68,69,70,71,72,73],[61,62,63,64,66,67,68,69,70,71,72,73],[61,62,63,64,65,67,68,69,70,71,72,73],[61,62,63,64,65,66,68,69,70,71,72,73],[61,62,63,64,65,66,67,69,70,71,72,73],[61,62,63,64,65,66,67,68,70,71,72,73],[61,62,63,64,65,66,67,68,69,71,72,73],[61,62,63,64,65,66,67,68,69,70,72,73],[61,62,63,64,65,66,67,68,69,70,71,73],[61,62,63,64,65,66,67,68,69,70,71,72],[104],[106],[107,112],[108,116,117,124,133],[108,109,116,124],[110,140],[111,112,117,125],[112,133],[113,114,116,124],[114],[115,116],[116],[116,117,118,133,139],[117,118],[116,119,124,133,139],[116,117,119,120,124,133,136,139],[119,121,133,136,139],[104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146],[116,122],[123,139],[114,116,124,133],[125],[126],[106,127],[128,138],[129],[130],[116,131],[131,132,140,142],[116,133],[134],[135],[124,133,136],[137],[124,138],[119,130,139],[140],[133,141],[142],[143],[116,118,133,139,142,144],[133,145],[56,58,59,60,76,77,78,79,81,83,85,90,96],[91],[91,92,93,94,95],[91,92,93],[57],[58,60,76],[87,88,89],[87],[87,98],[86],[76,80],[100],[57,74,75],[82],[83,102],[84],[91,94,95],[83]],"referencedMap":[[74,1],[62,2],[63,3],[61,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,14],[104,15],[106,16],[107,17],[108,18],[109,19],[110,20],[111,21],[112,22],[113,23],[114,24],[115,25],[116,26],[117,27],[118,28],[119,29],[120,30],[121,31],[147,32],[122,33],[123,34],[124,35],[125,36],[126,37],[127,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[142,53],[143,54],[144,55],[145,56],[97,57],[94,58],[92,58],[93,58],[96,59],[95,60],[58,61],[59,61],[77,62],[79,61],[90,63],[88,64],[99,65],[89,64],[87,66],[81,67],[101,68],[76,69],[83,70],[84,71],[85,72]],"exportedModulesMap":[[74,1],[62,2],[63,3],[61,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,14],[104,15],[106,16],[107,17],[108,18],[109,19],[110,20],[111,21],[112,22],[113,23],[114,24],[115,25],[116,26],[117,27],[118,28],[119,29],[120,30],[121,31],[147,32],[122,33],[123,34],[124,35],[125,36],[126,37],[127,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[142,53],[143,54],[144,55],[145,56],[97,57],[94,58],[92,58],[93,58],[96,73],[95,58],[59,61],[90,64],[76,61],[83,70],[84,74],[85,72]],"semanticDiagnosticsPerFile":[103,74,62,63,61,64,65,66,67,68,69,70,71,72,73,104,106,107,108,109,110,111,112,113,114,115,116,117,118,105,146,119,120,121,147,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,80,86,148,75,100,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,97,94,92,93,96,95,91,56,58,59,77,78,79,90,88,99,89,98,87,60,81,101,76,83,82,84,85,57,102]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/modules/cookie/index.ts","../src/types/index.ts","../src/modules/date/index.ts","../src/modules/dom/index.ts","../src/modules/number/index.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/lodash/clonedeep.d.ts","../node_modules/clipboard-copy/index.d.ts","../src/modules/tools/index.ts","../src/modules/filter/index.ts","../src/modules/format/index.ts","../src/modules/match/index.ts","../node_modules/@types/qs/index.d.ts","../src/modules/open-app/index.ts","../src/modules/track/types.ts","../src/modules/track/index.ts","../src/modules/upload/alioss.ts","../src/modules/upload/index.ts","../node_modules/@types/uuid/index.d.ts","../src/modules/monitor/utils/tracker.ts","../src/modules/monitor/lib/jserror.ts","../src/modules/monitor/lib/xhr.ts","../src/modules/monitor/index.ts","../src/modules/app-call/types.ts","../src/modules/app-call/core.ts","../src/modules/app-call/extensions.ts","../src/modules/app-call/configs.ts","../src/modules/app-call/offline.ts","../src/modules/app-call/index.ts","../src/index.ts","../src/modules/monitor/utils/onload.ts","../src/modules/monitor/lib/timing.ts","../node_modules/raven-js/typescript/raven.d.ts","../src/modules/sentry/index.ts","../src/types/lrz.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/webpack-env/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"dc695f0aaa6adebd925b30293f26a7cb88e1839f2b7911f95d3b2cc8abfc47e4","signature":"7fce176ca45f39bea6de45fca9cb4d4de6b5f03beb9008a22cf8217525f78627"},{"version":"a9d14a45c92f8e273173b453778546a0fbfa269ae74a842fd4ae6a3f397eb18a","signature":"f48fe82fa0efa3bbb0431ae08739f84f9ef961df8328f09c91c1d5445b0956e5"},{"version":"f70addce4b3ae8bdef36b5926d8a79d5b14a9868690ee027945406c8c86d0fe4","signature":"817ebf896260d1919dbcea89f4c06c93eb5b30e7b81a85d0be2553b1af37f593"},{"version":"304d9dec4537e825c2d5ed3a8c6c0068d389ed4c4f8d543cf88ecd7d21f34eb7","signature":"dd75ef178e25f2ffae968fcfb4a90790a2d893da7a9371421085b489f302c8af"},{"version":"23902c32676562355430fab89c7d59361a96ecdf8b9a2b2c943a14c635234c04","signature":"1d9b3d47e3a784ce62b76ab972fe5e5facfed9d8117a3d96d7bceadfc59a3519"},"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","98acc316756389efdc925de9169c826e4c40a6290fd0ed96b2d5a511b900b486","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","a33ea06913b712c529662bee7fd75959781267cf8a307902cc7761307fec0337","fc4048cf3c48b6766189ac0fd8817d961a1fdd0df72b161ecedb335b7e6c5590",{"version":"61b8520deff99c27812aed6f1d662cab400ecdcddda720a07388d3f486a04f1e","signature":"6b0455ce02a7bec608227729113621b4064a052f73dbbdddd99fdf07008a8826"},{"version":"2d81c238df55452b6c3204c5dae1f40175ddf4e9321bd5154424a25065c02407","signature":"0a1fd2c928d008aadd853e38ccdc138fded03d0820c185bc1c11c86347c8fb54"},{"version":"fc2120bcfa09045659a4d9d3dbbc349dbcb7a49103ee6f0dd5b8f5cf7455aed4","signature":"97f54c9bf6cf09f40f379bdc209c05afdfd117d531bb0a6d27960a3056c5dcac"},{"version":"bb09a650e7dc89f3e02dd7610c3643922251d3e3200014e838300f4109f2c75e","signature":"36440bec26b6e587a7e0a2588b94761cdac17878fda18f92e9199a6a1ba29173"},"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb",{"version":"21d6c3d7e1fe7b17012207b000be4d719a71e5af6c49950714c16eb8d5b1b7f8","signature":"5caf3f9cbc4ee9e4bfc356223cd7c2dcfb062b0c4a3f5375537214a6deef6dc4","affectsGlobalScope":true},{"version":"ad5ffa49ee8c158aff18f40c65c984d7daa7021d87303b52677c3d722391cb95","signature":"efdec51502c59314c2d7c070acca5ad6b48d6ca4c3cc634d5c72c25afb5dcb48"},{"version":"5e7df4757bfe65b504a7cb00fdd497fa3a3da3e8673a18f2b829452d7c9f51a8","signature":"c1db0a188dc97965937541a0b76c7c836883975650aa5b24db4e5721d79a1111"},{"version":"df41126bc45c145117823ea49bd7262f96d0a16655d957c6e48ffb2fc9eba123","signature":"80f592b4e0531204883fcf49edf4d4b2273589d38713180c6d97846657c14b3e"},{"version":"78504b26bea4444c9a4a2f59d5c18f3458a56aa37f9f75ae9e8fa4c075022cc7","signature":"6e12aea70002d3551796488fb0beae3c6a5bb41db7764aa02f34612fa96356b5"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"e2f4badb383f65161717b8319268b002dade0155ddb0dbf14f65a2ef617447cc","signature":"9ca29ae68f5d126f93223c2d4c9c5ef5a05273151bab98a690f3717b1f7abe50"},{"version":"e76654213bd70e754d3ff751e01fd1bc215b158e6c6564e7a1796378c3eb5ca1","signature":"50b84a52a45ed9004d3fdc81edfd3b1f54e36b54ba6d4d859b46fd0d2286d0ec"},{"version":"28e8199543970723a78f93332073bd5552020ffe4b46ad7bdef221110fcf36fc","signature":"82284759683c8364a7396ec677bc06a24e3e9b37321546637091395f855b8a94"},{"version":"dc99244d797634d90c77ac350e823170f4e13afa7e32f1d00261b8568c4949a0","signature":"146ca9ab3daaa20ef0d120be36eb6cf3a55829a0e22b3592c09e4c6847b06070"},{"version":"7325535c80b6d29a5d8b097d9d34d953f02937302303a57b521056133a7e9914","signature":"566c2f4e6fe3a8dc256338b3641a9760b4ef1300b4f5826d5d865cac1d935d3f"},{"version":"eec7e2431aa886c4d58169cbf6a8ca0bcc27228b1dac03597bf6c435181dd6c0","signature":"30b44f3fff7c842278cca61e5c8168534f8186cf5d5e44824944f22e9ff9e2a7","affectsGlobalScope":true},{"version":"6a545f8802c95b1d2deb65919e9b693e081db39b07d82c4033c238e052cfc879","signature":"598ad2b2f4ff187b42545b2fd2f966d3550b83503323fc5ecb77fc800adb2c3f"},{"version":"cb1ce37d0620b2c8cfec3e18c60b6804f0eb7a357b5ae8c3c06ed993d14cb65f","signature":"6666f48a213371613d90844f0aac19e371cc32ab346d02ea0f68ce7884edf7a2"},{"version":"73fbc306770bc498ca720c6e7b8ba80c65000d62de204b5c15b8bec64bc82de5","signature":"75ffe27ccdea966519000a5d2099296976b452869036495cd418b5092d00c728"},{"version":"12da92dfeeb0b70c15f24c32011bf799748cb2f479eb933737af69eeaedce891","signature":"8bf7fb7da090431c93c2000e4347e5d108295de7e3b6b66081f3ea6f8c4055e9"},{"version":"81d2a7eec88bd902b6e61cb474af4246af905dc77581f1dd2a0f5532d6cb1cd1","signature":"be8dfc16bb4d0bf346fc6db02e586e4b9e23acbbeec044d8cd4dfb0ecaccfbd6"},{"version":"7e3ed122f615d0e8de55465669ca2d22cdde9227375fc12049b7f9e4734b5d3e","signature":"4a6b83afb13c736939b35f93c21ecec0c55e0d2a15574f8e9c5ac5a2c52ff46f"},{"version":"5ed4fa521ce471b9e786d865fcbfcab45d807411c572d5f8594f05249f610412","signature":"4128dab7aa6227a2624c65caf68a0205216d163a67eee2f4302d92caef3bcbce"},"552a05d8ed3e1b634675ad491b3afb62631212d1d8d3df1bb9cfd808def696cb",{"version":"86d3111483e952d25e40f365f6318d4dab7c5932cc87b9e5acff7498332833d0","signature":"64743a220e1a5fe4d9dc003205cfb06980fd3f1e875ddc1101f9aecbcdd84762"},"bf6c5393c3d7e1ade93ce1a58813f4b8a1151ffda4b0f13bcc0e78476ff64c4f","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85",{"version":"ebf3ec92378d6eae07f236180ac6caba814464947ee2c90b347202e9f35c6379","affectsGlobalScope":true}],"options":{"declaration":true,"declarationDir":"./","esModuleInterop":true,"module":99,"noUnusedLocals":true,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[115,116,146,147],[73],[61,63,64,65,66,67,68,69,70,71,72,73],[61,62,64,65,66,67,68,69,70,71,72,73],[62,63,64,65,66,67,68,69,70,71,72,73],[61,62,63,65,66,67,68,69,70,71,72,73],[61,62,63,64,66,67,68,69,70,71,72,73],[61,62,63,64,65,67,68,69,70,71,72,73],[61,62,63,64,65,66,68,69,70,71,72,73],[61,62,63,64,65,66,67,69,70,71,72,73],[61,62,63,64,65,66,67,68,70,71,72,73],[61,62,63,64,65,66,67,68,69,71,72,73],[61,62,63,64,65,66,67,68,69,70,72,73],[61,62,63,64,65,66,67,68,69,70,71,73],[61,62,63,64,65,66,67,68,69,70,71,72],[103],[105],[106,111],[107,115,116,123,132],[107,108,115,123],[109,139],[110,111,116,124],[111,132],[112,113,115,123],[113],[114,115],[115],[115,116,117,132,138],[116,117],[115,118,123,132,138],[115,116,118,119,123,132,135,138],[118,120,132,135,138],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145],[115,121],[122,138],[113,115,123,132],[124],[125],[105,126],[127,137],[128],[129],[115,130],[130,131,139,141],[115,132],[133],[134],[123,132,135],[136],[123,137],[118,129,138],[139],[132,140],[141],[142],[115,117,132,138,141,143],[132,144],[152,190],[152,175,190],[151,190],[190],[152],[152,176,190],[151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189],[176,190],[56,58,59,60,76,77,78,79,81,83,85,90,96],[91],[91,92,93,94,95],[91,92,93],[57],[58,60,76],[87,88,89],[87],[87,98],[86],[76,80],[100],[57,74,75],[82],[83,102],[84],[91,94,95],[83]],"referencedMap":[[148,1],[74,2],[62,3],[63,4],[61,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,12],[71,13],[72,14],[73,15],[103,16],[105,17],[106,18],[107,19],[108,20],[109,21],[110,22],[111,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[146,33],[121,34],[122,35],[123,36],[124,37],[125,38],[126,39],[127,40],[128,41],[129,42],[130,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[175,58],[176,59],[152,60],[155,61],[173,58],[174,58],[164,58],[163,62],[161,58],[156,58],[169,58],[167,58],[171,58],[151,58],[168,58],[172,58],[157,58],[158,58],[170,58],[153,58],[159,58],[160,58],[162,58],[166,58],[177,63],[165,58],[154,58],[190,64],[184,63],[186,65],[185,63],[178,63],[179,63],[181,63],[183,63],[187,65],[188,65],[180,65],[182,65],[97,66],[94,67],[92,67],[93,67],[96,68],[95,69],[58,70],[59,70],[77,71],[79,70],[90,72],[88,73],[99,74],[89,73],[87,75],[81,76],[101,77],[76,78],[83,79],[84,80],[85,81]],"exportedModulesMap":[[148,1],[74,2],[62,3],[63,4],[61,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,12],[71,13],[72,14],[73,15],[103,16],[105,17],[106,18],[107,19],[108,20],[109,21],[110,22],[111,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[146,33],[121,34],[122,35],[123,36],[124,37],[125,38],[126,39],[127,40],[128,41],[129,42],[130,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[175,58],[176,59],[152,60],[155,61],[173,58],[174,58],[164,58],[163,62],[161,58],[156,58],[169,58],[167,58],[171,58],[151,58],[168,58],[172,58],[157,58],[158,58],[170,58],[153,58],[159,58],[160,58],[162,58],[166,58],[177,63],[165,58],[154,58],[190,64],[184,63],[186,65],[185,63],[178,63],[179,63],[181,63],[183,63],[187,65],[188,65],[180,65],[182,65],[97,66],[94,67],[92,67],[93,67],[96,82],[95,67],[59,70],[90,73],[76,70],[83,79],[84,83],[85,81]],"semanticDiagnosticsPerFile":[148,149,150,74,62,63,61,64,65,66,67,68,69,70,71,72,73,147,103,105,106,107,108,109,110,111,112,113,114,115,116,117,104,145,118,119,120,146,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,80,175,176,152,155,173,174,164,163,161,156,169,167,171,151,168,172,157,158,170,153,159,160,162,166,177,165,154,190,189,184,186,185,178,179,181,183,187,188,180,182,86,191,75,100,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,97,94,92,93,96,95,91,56,58,59,77,78,79,90,88,99,89,98,87,60,81,101,76,83,82,84,85,57,102]},"version":"4.9.5"}
|