Files
UHF_HARDWARE_KEY/www/cordova-plugin-hardwearKey.js
T
2021-07-20 14:44:31 +08:00

14 lines
343 B
JavaScript

var exec = require('cordova/exec');
var coolMethod = function () {};
coolMethod.startListen = function (success, error) {
exec(success, error, 'hardwearKey', 'startListen', []);
}
coolMethod.stopListen = function (success, error) {
exec(success, error, 'hardwearKey', 'stopListen', []);
}
module.exports = coolMethod;