From 980027135219402b2a3db1cec3cb0a5a6a54a9cb Mon Sep 17 00:00:00 2001 From: Simone Colazzo <42938441+KitCarson88@users.noreply.github.com> Date: Mon, 29 Apr 2019 08:07:10 +0200 Subject: [PATCH] feat(CameraPreview): add getHorizontalFOV callback (#3000) --- src/@ionic-native/plugins/camera-preview/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/@ionic-native/plugins/camera-preview/index.ts b/src/@ionic-native/plugins/camera-preview/index.ts index c22c8bc0c..0867f2679 100644 --- a/src/@ionic-native/plugins/camera-preview/index.ts +++ b/src/@ionic-native/plugins/camera-preview/index.ts @@ -456,4 +456,13 @@ export class CameraPreview extends IonicNativePlugin { onBackButton(): Promise { return; } + + /** + * Return in use device camera fov + * @return {Promise} + */ + @Cordova() + getHorizontalFOV(): Promise { + return; + } }