@rongcloud/electron 5.18.0-alpha.2 → 5.20.0-c-ycsw-alpha.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/index.d.ts CHANGED
@@ -41,7 +41,7 @@ declare type EnableLogL = LogL.DEBUG | LogL.INFO | LogL.WARN | LogL.ERROR;
41
41
 
42
42
  declare class RCMainProxy {
43
43
  private _rcMain;
44
- constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL, runInMainProcess: boolean, enableSyncEmptyTopConversation: boolean, disableLogReport: boolean);
44
+ constructor(appkey: string, dbpath: string, logOutputLevel: EnableLogL, runInMainProcess: boolean, enableSyncEmptyTopConversation: boolean, disableLogReport: boolean, eventLoopBlockingCheck: boolean);
45
45
  /**
46
46
  * @deprecated
47
47
  */
@@ -103,7 +103,12 @@ interface IInitOptions {
103
103
  * 是否关闭日志上报
104
104
  */
105
105
  disableLogReport?: boolean;
106
+ /**
107
+ * 是否启动事件循环阻塞检查
108
+ */
109
+ eventLoopBlockingCheck?: boolean;
106
110
  }
111
+
107
112
  declare const _default: (options: IInitOptions) => RCMainProxy;
108
113
 
109
- export { IInitOptions, _default as default };
114
+ export { _default as default };