@ray-js/ray-ipc-player 2.0.20-beta-14 → 2.0.20-beta-15
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 +6 -6
- package/package.json +1 -1
package/lib/typings/index.d.ts
CHANGED
|
@@ -114,16 +114,16 @@ export type IProps = {
|
|
|
114
114
|
* @default "正在获取视频流..."
|
|
115
115
|
*/
|
|
116
116
|
loadText?: string;
|
|
117
|
-
/**
|
|
118
|
-
* @description.en objectFit:contain|fillCrop
|
|
119
|
-
* @description.zh 填充模式设置:contain: 图像长边填满屏幕,短边区域会被填充⿊⾊, fillCrop: 图像铺满屏幕
|
|
120
|
-
* @default "contain"
|
|
121
|
-
*/
|
|
122
|
-
objectFit?: string;
|
|
123
117
|
/**
|
|
124
118
|
* @description.en extend
|
|
125
119
|
* @description.zh 扩展属性
|
|
126
120
|
* @default {}
|
|
127
121
|
*/
|
|
128
122
|
extend?: Record<string, any>;
|
|
123
|
+
/**
|
|
124
|
+
* @description.en reconnect
|
|
125
|
+
* @description.zh 是否要重新连接
|
|
126
|
+
* @default {}
|
|
127
|
+
*/
|
|
128
|
+
reConnect?: boolean;
|
|
129
129
|
};
|