Front end of the Slack clone application.

ionic-native-plugin.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. var IonicNativePlugin = (function () {
  2. function IonicNativePlugin() {
  3. }
  4. /**
  5. * Returns a boolean that indicates whether the plugin is installed
  6. * @return {boolean}
  7. */
  8. IonicNativePlugin.installed = function () {
  9. return false;
  10. };
  11. /**
  12. * Returns the original plugin object
  13. */
  14. IonicNativePlugin.getPlugin = function () { };
  15. /**
  16. * Returns the plugin's name
  17. */
  18. IonicNativePlugin.getPluginName = function () {
  19. return;
  20. };
  21. /**
  22. * Returns the plugin's reference
  23. */
  24. IonicNativePlugin.getPluginRef = function () {
  25. return;
  26. };
  27. /**
  28. * Returns the plugin's install name
  29. */
  30. IonicNativePlugin.getPluginInstallName = function () {
  31. return;
  32. };
  33. /**
  34. * Returns the plugin's supported platforms
  35. */
  36. IonicNativePlugin.getSupportedPlatforms = function () {
  37. return;
  38. };
  39. return IonicNativePlugin;
  40. }());
  41. export { IonicNativePlugin };
  42. //# sourceMappingURL=ionic-native-plugin.js.map