fcr-ui-scene 1.0.10 → 1.0.20
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.
|
@@ -205,12 +205,19 @@ export declare type LaunchOptions = {
|
|
|
205
205
|
*/
|
|
206
206
|
recordOptions?: BoardWindowAnimationOptions;
|
|
207
207
|
/**
|
|
208
|
-
* 云代理类型
|
|
208
|
+
* RTC 云代理类型
|
|
209
209
|
*/
|
|
210
210
|
/** @en
|
|
211
211
|
* Cloud proxy type
|
|
212
212
|
*/
|
|
213
|
-
|
|
213
|
+
rtcCloudProxyType?: AgoraCloudProxyType;
|
|
214
|
+
/**
|
|
215
|
+
* 是否开启 RTM 云代理
|
|
216
|
+
*/
|
|
217
|
+
/** @en
|
|
218
|
+
* Whether to enable RTM cloud proxy
|
|
219
|
+
*/
|
|
220
|
+
rtmCloudProxyEnabled?: boolean;
|
|
214
221
|
};
|
|
215
222
|
/**
|
|
216
223
|
* 支持的语言
|
|
@@ -9,10 +9,6 @@ import { BeautyFilterOptions, VirtualBackgroundOptions } from '..';
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class DeviceSettingUIStore extends EduUIStoreBase {
|
|
11
11
|
private _defaultBeautyOptions;
|
|
12
|
-
private _pretestCameraEnabled;
|
|
13
|
-
private _pretestMicEnabled;
|
|
14
|
-
setPretestCameraEnabled(enable: boolean): void;
|
|
15
|
-
setPretestMicEnabled(enable: boolean): void;
|
|
16
12
|
private _virtualBackgroundProcessor?;
|
|
17
13
|
private _beautyEffectProcessor?;
|
|
18
14
|
private _aiDenoiserProcessor?;
|
|
@@ -56,8 +52,6 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
|
|
|
56
52
|
get beautySmoothValue(): number | undefined;
|
|
57
53
|
get beautyBrighteningValue(): number | undefined;
|
|
58
54
|
get beautyBlushValue(): number | undefined;
|
|
59
|
-
get pretestCameraEnabled(): boolean;
|
|
60
|
-
get pretestMicEnabled(): boolean;
|
|
61
55
|
get defaultBeautyOptions(): {
|
|
62
56
|
smooth: number;
|
|
63
57
|
brightening: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const matchVirtualSoundCardPattern: (deviceName: string) => boolean;
|