@ezuikit/player-ezopen 8.2.0-alpha.2 → 8.2.0-beta.2
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/README.md +1 -1
- package/dist/adapter.esm.js +3 -3
- package/dist/adapter.js +3 -3
- package/dist/adapter.umd.js +6 -6
- package/dist/index.esm.js +3 -3
- package/dist/index.js +3 -3
- package/dist/index.umd.js +5 -5
- package/dist/types/adapter.d.ts +1 -1
- package/dist/types/index.d.ts +2 -3
- package/package.json +1 -1
package/dist/types/adapter.d.ts
CHANGED
|
@@ -960,7 +960,7 @@ declare class EZopenPlayer extends EventEmitter {
|
|
|
960
960
|
* @param cb
|
|
961
961
|
* @returns
|
|
962
962
|
*/
|
|
963
|
-
enable3DZoom(cb: Zoom3DCallback):
|
|
963
|
+
enable3DZoom(cb: Zoom3DCallback): -1 | 0;
|
|
964
964
|
/**
|
|
965
965
|
* @description 关闭3D定位 依赖能力集[ort_zoomOut_maxTime]
|
|
966
966
|
* @returns
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1088,7 +1088,7 @@ declare class EZopenPlayer extends EventEmitter {
|
|
|
1088
1088
|
* @param cb
|
|
1089
1089
|
* @returns
|
|
1090
1090
|
*/
|
|
1091
|
-
enable3DZoom(cb: Zoom3DCallback):
|
|
1091
|
+
enable3DZoom(cb: Zoom3DCallback): -1 | 0;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* @description 关闭3D定位 依赖能力集[ort_zoomOut_maxTime]
|
|
1094
1094
|
* @returns
|
|
@@ -1177,5 +1177,4 @@ declare class EZopenPlayer extends EventEmitter {
|
|
|
1177
1177
|
private _addEventListenerResize;
|
|
1178
1178
|
}
|
|
1179
1179
|
|
|
1180
|
-
export { FECCorrect, PluginManager, StreamClient, EZopenPlayer as default };
|
|
1181
|
-
export type { EZopenPlayerOptions, IFrameInfo, IResult, IStreamClient, MirrorFlipCommand, PlayerEnv, WasmDecoderStatue, WaterMarkParams };
|
|
1180
|
+
export { type EZopenPlayerOptions, FECCorrect, type IFrameInfo, type IResult, type IStreamClient, type MirrorFlipCommand, type PlayerEnv, PluginManager, StreamClient, type WasmDecoderStatue, type WaterMarkParams, EZopenPlayer as default };
|