Thanks for the link. So the usage will be no different for Ionic? Don’t I need to inject or take care of the Angular digest cycle?
.controller('MainController', function($scope){
$scope.result = 'empty';
var telephoneNumber = cordova.require("cordova/plugin/telephonenumber");
telephoneNumber.get(function(result) {
$scope.result = 'result = ' + result;
}, function() {
$scope.result = 'error';
});
});