@ray-js/ray-ipc-player 2.0.21-beta-3 → 2.0.21
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/lib/typings/index.d.ts +8 -8
- package/package.json +1 -1
package/lib/typings/index.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export type IProps = {
|
|
|
35
35
|
* @description.zh 是否为分享设备
|
|
36
36
|
* @default true
|
|
37
37
|
*/
|
|
38
|
-
isShare
|
|
38
|
+
isShare?: boolean;
|
|
39
39
|
/**
|
|
40
40
|
* @description.en privateState
|
|
41
41
|
* @description.zh 隐私模式
|
|
@@ -171,19 +171,19 @@ export type IProps = {
|
|
|
171
171
|
/**
|
|
172
172
|
* @description.en reconnect
|
|
173
173
|
* @description.zh 是否要重新连接
|
|
174
|
-
* @default
|
|
174
|
+
* @default false
|
|
175
175
|
*/
|
|
176
176
|
reConnect?: boolean;
|
|
177
177
|
/**
|
|
178
|
-
* @description.en
|
|
178
|
+
* @description.en awakeStatus
|
|
179
179
|
* @description.zh 是否需要唤醒
|
|
180
|
-
* @default
|
|
180
|
+
* @default false
|
|
181
181
|
*/
|
|
182
182
|
awakeStatus?: boolean | undefined;
|
|
183
183
|
/**
|
|
184
|
-
* @description.en
|
|
185
|
-
* @description.zh
|
|
186
|
-
* @default
|
|
184
|
+
* @description.en ignoreHideStopPreview
|
|
185
|
+
* @description.zh 是否需要忽略触发onHide事件时停止拉流
|
|
186
|
+
* @default false
|
|
187
187
|
*/
|
|
188
|
-
ignoreHideStopPreview
|
|
188
|
+
ignoreHideStopPreview?: boolean;
|
|
189
189
|
};
|