module-develop-kit 0.4.0 → 0.4.1
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/dist/index.d.ts +3 -3
- package/dist/index.es.js +2388 -2353
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -32,9 +32,9 @@ export declare const aesEncryptString: (key: string, str: string | default_2.lib
|
|
|
32
32
|
* 用于格式化输出会话过程中的日志信息
|
|
33
33
|
*/
|
|
34
34
|
export declare const CallLogger: {
|
|
35
|
-
log(message:
|
|
36
|
-
warn(message:
|
|
37
|
-
error(message:
|
|
35
|
+
log(message: unknown, ...args: unknown[]): void;
|
|
36
|
+
warn(message: unknown, ...args: unknown[]): void;
|
|
37
|
+
error(message: unknown, ...args: unknown[]): void;
|
|
38
38
|
};
|
|
39
39
|
|
|
40
40
|
/**
|