@rongcloud/electron 5.12.4 → 5.14.0
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/cppServiceProcess.js +1 -1
- package/index.d.ts +40 -1
- package/index.esm.js +1 -15
- package/index.js +1 -1
- package/package.json +1 -4
- package/sub-process.js +2 -2
package/index.d.ts
CHANGED
|
@@ -1,4 +1,43 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* 日志打印等级定义
|
|
3
|
+
* @category Enum
|
|
4
|
+
*/
|
|
5
|
+
declare enum LogL {
|
|
6
|
+
/**
|
|
7
|
+
* IM 质量数据日志,控制台不打印
|
|
8
|
+
*/
|
|
9
|
+
STATISTICS = -2,
|
|
10
|
+
/**
|
|
11
|
+
* 未明确使用场景,暂未使用,控制台不打印
|
|
12
|
+
*/
|
|
13
|
+
RECORD = -1,
|
|
14
|
+
/**
|
|
15
|
+
* 未明确使用场景,暂未使用,控制台不打印
|
|
16
|
+
*/
|
|
17
|
+
FATAL = 0,
|
|
18
|
+
/**
|
|
19
|
+
* ERROR 级
|
|
20
|
+
*/
|
|
21
|
+
ERROR = 1,
|
|
22
|
+
/**
|
|
23
|
+
* WARN 级
|
|
24
|
+
*/
|
|
25
|
+
WARN = 2,
|
|
26
|
+
/**
|
|
27
|
+
* INFO 级
|
|
28
|
+
*/
|
|
29
|
+
INFO = 3,
|
|
30
|
+
/**
|
|
31
|
+
* DEBUG 级
|
|
32
|
+
*/
|
|
33
|
+
DEBUG = 4
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 有效的日志等级声明
|
|
38
|
+
* @category Type
|
|
39
|
+
*/
|
|
40
|
+
declare type EnableLogL = LogL.DEBUG | LogL.INFO | LogL.WARN | LogL.ERROR;
|
|
2
41
|
|
|
3
42
|
declare class RCMainProxy {
|
|
4
43
|
private _rcMain;
|