@rongcloud/engine 5.8.2-enterprise.2 → 5.8.2-enterprise.3
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/index.d.ts +6 -0
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4160,6 +4160,7 @@ declare type INaviCache = {
|
|
|
4160
4160
|
token: string;
|
|
4161
4161
|
naviInfo: INaviInfo;
|
|
4162
4162
|
timestamp: number;
|
|
4163
|
+
environment: string;
|
|
4163
4164
|
};
|
|
4164
4165
|
/**
|
|
4165
4166
|
* 导航数据管理类,负责管理导航有效期、导航请求、导航缓存
|
|
@@ -4173,6 +4174,11 @@ declare abstract class BasicNavi {
|
|
|
4173
4174
|
* 当前进行中的导航请求
|
|
4174
4175
|
*/
|
|
4175
4176
|
private crtRequest;
|
|
4177
|
+
/**
|
|
4178
|
+
* 内外网环境
|
|
4179
|
+
*/
|
|
4180
|
+
protected _environment: string;
|
|
4181
|
+
protected getCatchKey(token: string): string;
|
|
4176
4182
|
/**
|
|
4177
4183
|
* 请求导航数据
|
|
4178
4184
|
* @param token
|