@rongcloud/plugin-rtc 5.30.0 → 5.30.2-c-im-alpha.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.cjs.js +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _rongcloud_engine from '@rongcloud/engine';
|
|
1
2
|
import { EventEmitter, BasicLogger, INaviInfo, LogL, EnableLogL, RTCPluginContext, Codec, IPromiseResult, ErrorCode, KVString, IRuntime, IAsyncRes, RCConnectionStatus, ConversationType, ISendMsgOptions, IReceivedMessage, RTCMode as RTCMode$1, IPluginGenerator } from '@rongcloud/engine';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -2662,7 +2663,7 @@ declare class RTCContext {
|
|
|
2662
2663
|
data?: {
|
|
2663
2664
|
version: number;
|
|
2664
2665
|
} | undefined;
|
|
2665
|
-
}> | Promise<
|
|
2666
|
+
}> | Promise<_rongcloud_engine.RCResult<any>>;
|
|
2666
2667
|
sendMessage(conversationType: ConversationType, targetId: string, options: ISendMsgOptions): IPromiseResult<IReceivedMessage>;
|
|
2667
2668
|
registerRTCSignalListener(listener?: ((buffer: Uint8Array) => void) | undefined): void;
|
|
2668
2669
|
registerConnectionStateChangeListener(listener: (status: RCConnectionStatus, code: ErrorCode) => void): void;
|