Skip to content

Commit

Permalink
feat(call-number): add isCallSupported method (#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
evuz authored and ihadeed committed Dec 8, 2017
1 parent 9f72592 commit 6053296
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/@ionic-native/plugins/call-number/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 6053296

Please sign in to comment.