@icos-desktop/react-components 0.1.13 → 0.1.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/build/index.d.ts CHANGED
@@ -142,11 +142,32 @@ interface VideoControlProps {
142
142
  declare const VideoControl: React.FC<VideoControlProps>;
143
143
 
144
144
  interface VideoPlayerProps {
145
+ /**
146
+ * 视频播放器库路径
147
+ */
148
+ libsPath?: {
149
+ cityeyes?: string;
150
+ h5player?: string;
151
+ };
152
+ /**
153
+ * 视频播放地址
154
+ */
145
155
  url?: string;
156
+ /**
157
+ * 实体唯一编码,用于视频控制
158
+ */
146
159
  senseGlobalCode?: string;
147
- ptzControl?: boolean;
160
+ /**
161
+ * 视频通道 id
162
+ */
148
163
  channelId?: string;
164
+ /**
165
+ * 播放器类型
166
+ */
149
167
  videoPlayerType?: 'cityeyes' | 'h5player';
168
+ /**
169
+ * 视频源类型
170
+ */
150
171
  videoStreamSource?: 'cityeyes' | 'hikvision' | 'custom';
151
172
  }
152
173