feat(CameraPreview): add getHorizontalFOV callback (#3000)

This commit is contained in:
Simone Colazzo 2019-04-29 08:07:10 +02:00 committed by Daniel Sogl
parent e288a5d757
commit 9800271352

View File

@ -456,4 +456,13 @@ export class CameraPreview extends IonicNativePlugin {
onBackButton(): Promise<any> {
return;
}
/**
* Return in use device camera fov
* @return {Promise<any>}
*/
@Cordova()
getHorizontalFOV(): Promise<any> {
return;
}
}