module-develop-kit 0.4.0 → 0.4.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/dist/index.d.ts +5 -5
- 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
|
/**
|
|
@@ -102,7 +102,7 @@ export declare function htmlSanitize(input: string): string;
|
|
|
102
102
|
/**
|
|
103
103
|
* jssip、音频播放相关配置信息
|
|
104
104
|
*/
|
|
105
|
-
declare interface ICallConfig extends SipAccount {
|
|
105
|
+
export declare interface ICallConfig extends SipAccount {
|
|
106
106
|
/**
|
|
107
107
|
* WebSocket安全协议地址
|
|
108
108
|
*/
|
|
@@ -140,7 +140,7 @@ declare interface ICallConfig extends SipAccount {
|
|
|
140
140
|
/**
|
|
141
141
|
* 用于拨打电话的相关信息
|
|
142
142
|
*/
|
|
143
|
-
declare interface ICallOptions {
|
|
143
|
+
export declare interface ICallOptions {
|
|
144
144
|
call: string;
|
|
145
145
|
}
|
|
146
146
|
|