aliyun-rtc-sdk 6.12.5-beta.0 → 6.12.5-beta.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/aliyun-rtc-sdk.js +3 -3
- package/dist/types/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -2888,6 +2888,10 @@ declare interface OSSToken {
|
|
|
2888
2888
|
expiration: number;
|
|
2889
2889
|
}
|
|
2890
2890
|
|
|
2891
|
+
declare type Parameter = {
|
|
2892
|
+
[key: string]: any;
|
|
2893
|
+
};
|
|
2894
|
+
|
|
2891
2895
|
declare class PluginManager extends default_2<PluginManagerListener> {
|
|
2892
2896
|
private plugins;
|
|
2893
2897
|
add(plugin: AliRtcPlugin, options?: any): void;
|
|
@@ -3397,7 +3401,8 @@ declare class RtsManager extends default_2<RtsManagerEventListener> {
|
|
|
3397
3401
|
private dcResolve?;
|
|
3398
3402
|
private dcConnectingPromise?;
|
|
3399
3403
|
private _publishingTracks;
|
|
3400
|
-
|
|
3404
|
+
private parameter;
|
|
3405
|
+
constructor(localStreamManager: LocalStreamManager, slsReporter: SLSReporter, publishRetryHook: () => void, subscribeRetryOptionsHook: () => RemoteSubscribeOptions | undefined, parameter: Parameter);
|
|
3401
3406
|
private addRTSListener;
|
|
3402
3407
|
get pcTraceId(): string;
|
|
3403
3408
|
set localJoinTime(time: number);
|