@rongcloud/engine 5.6.2-beem.1 → 5.6.2-beem.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 +4 -1
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1531,6 +1531,10 @@ declare enum LogTagId {
|
|
|
1531
1531
|
* 用于保留迁移前的日志,后续删除
|
|
1532
1532
|
*/
|
|
1533
1533
|
O = "L-original-O",
|
|
1534
|
+
/**
|
|
1535
|
+
* 测试日志,不入库,因此不需要关注 TAG,避免调试 TAG 膨胀
|
|
1536
|
+
*/
|
|
1537
|
+
T = "L-TEST-O",
|
|
1534
1538
|
/** 插件安装 */
|
|
1535
1539
|
L_INSTALL_PLUGIN_T = "L-INSTALL_PLUGIN-T",
|
|
1536
1540
|
/** 插件安装结果 */
|
|
@@ -6370,7 +6374,6 @@ declare abstract class AEngine implements IEngine {
|
|
|
6370
6374
|
*/
|
|
6371
6375
|
registerRTCSignalingListener(listener: ((buffer: Uint8Array) => void) | undefined): void;
|
|
6372
6376
|
abstract requestNaviInfo(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
6373
|
-
abstract updateNaviInfo(naviInfo: INaviInfo): void;
|
|
6374
6377
|
/**
|
|
6375
6378
|
* 为非 engine 包创建 logger 工具实例
|
|
6376
6379
|
*/
|