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

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

View File

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