3
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-03-18 01:41:06 +08:00

feat(call-number): add isCallSupported method ()

This commit is contained in:
Jesús Gómez Bellido 2017-12-08 21:05:34 +01:00 committed by Ibby Hadeed
parent 9f72592fcc
commit 6053296998

@ -44,4 +44,14 @@ export class CallNumber extends IonicNativePlugin {
return; return;
} }
/**
* Check if call feature is available
* @return {Promise<any>}
*/
@Cordova({
callbackOrder: 'reverse'
})
isCallSupported(): Promise<any> {
return;
}
} }