UNPKG

cordova-plugin-netcontroll-integration-ifood

Version:
25 lines (19 loc) 1.19 kB
var exec = require('cordova/exec'); exports.Testar = function (params, success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.Testar', [params]); } exports.Initialize = function (params, success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.Initialize', [params]); } exports.SaveImageFromUrl = function (params, success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.SaveImageFromUrl', [params]); } exports.GetAbsolutePath = function (success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.GetAbsolutePath'); } exports.ListStoragedImagesFromDirectory = function (params, success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.ListStoragedImagesFromDirectory', [params]); } exports.LoadStoradImageByFullName = function (params, success, error) { exec(success, error, 'NetControllCordovaPluginsIntegrationIfood', 'Utils.UtilsImageStore.LoadStoradImageByFullName', [params]); }