trtc-sdk-v5 5.14.2-wasm.2 → 5.14.2-wasm.4
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/assets/av_processing.wasm +0 -0
- package/assets/debug-dialog.js +2 -2
- package/assets/worker.js +13 -13
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/chorus/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/custom-encryption/package.json +1 -1
- package/plugins/device-detector/package.json +1 -1
- package/plugins/small-stream-auto-switcher/package.json +1 -1
- package/plugins/video-decoder/package.json +1 -1
- package/plugins/video-effect/basic-beauty/package.json +1 -1
- package/plugins/video-effect/beauty/package.json +1 -1
- package/plugins/video-effect/video-mixer/package.json +1 -1
- package/plugins/video-effect/virtual-background/package.json +1 -1
- package/plugins/video-effect/watermark/package.json +1 -1
- package/plugins/voice-changer/package.json +1 -1
- package/trtc.esm.js +63 -104
- package/trtc.js +1 -17
package/index.d.ts
CHANGED
|
@@ -411,6 +411,7 @@ export declare interface SwitchRoomConfig {
|
|
|
411
411
|
export declare interface ScreenShareConfig {
|
|
412
412
|
view?: string | HTMLElement | HTMLElement[] | null;
|
|
413
413
|
publish?: boolean;
|
|
414
|
+
streamType?: TRTCStreamType;
|
|
414
415
|
muteSystemAudio?: boolean;
|
|
415
416
|
option?: {
|
|
416
417
|
profile?: keyof typeof screenProfileMap | VideoProfile;
|
package/package.json
CHANGED