feat(camera-preview):add getCameraCharacteristics (#3260)

* feat(camera-preview):add getCameraCharacteristics

added getCameraCharacteristics to get the characteristics of all available cameras. #3163

* Update index.ts
This commit is contained in:
Akshay Dwivedi 2019-12-27 19:07:47 +08:00 committed by Daniel Sogl
parent 129ba4dbe2
commit fc90795a2c

View File

@ -487,4 +487,13 @@ export class CameraPreview extends IonicNativePlugin {
getHorizontalFOV(): Promise<any> {
return;
}
/**
* Get the characteristics of all available cameras
* @return {Promise<any>}
*/
@Cordova()
getCameraCharacteristics(): Promise<any> {
return;
}
}