@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/binding/electron-darwin-arm64.node +0 -0
- package/binding/electron-darwin-x64.node +0 -0
- package/binding/electron-linux-arm64.node +0 -0
- package/binding/electron-linux-x64.node +0 -0
- package/binding/electron-win32-ia32.node +0 -0
- package/binding/electron-win32-x64.node +0 -0
- package/cpp-service-process.cjs.js +1 -1
- package/cpp-service-process.esm.js +2 -2
- package/index.cjs +1 -1
- package/index.cjs.js +1 -1
- package/index.d.ts +7 -2
- package/index.esm.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/sub-process.cjs.js +1 -1
- package/sub-process.esm.js +1 -1
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 {
|
|
114
|
+
export { _default as default };
|