feat: Make videoWidth and videoHeight available on all devices

This commit is contained in:
Marc Rousavy
2021-07-08 10:59:27 +02:00
parent b2f3c08a07
commit 5126dd63b4
2 changed files with 8 additions and 8 deletions

View File

@@ -118,16 +118,12 @@ export interface CameraDeviceFormat {
photoWidth: number;
/**
* The video resolutions's height
*
* @platform iOS 13.0
*/
videoHeight?: number;
videoHeight: number;
/**
* The video resolution's width
*
* @platform iOS 13.0
*/
videoWidth?: number;
videoWidth: number;
/**
* A boolean value specifying whether this format supports the highest possible photo quality that can be delivered on the current platform.
*