UI for Zipcoin Blue

help.js 979B

123456789101112131415161718192021222324252627282930
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. const tslib_1 = require("tslib");
  4. const command_1 = require("@ionic/cli-utils/lib/command");
  5. let HelpCommand = class HelpCommand extends command_1.Command {
  6. run(inputs, options) {
  7. return tslib_1.__awaiter(this, void 0, void 0, function* () {
  8. const { showHelp } = yield Promise.resolve().then(() => require('@ionic/cli-utils/lib/help'));
  9. showHelp(this.env, inputs);
  10. });
  11. }
  12. };
  13. HelpCommand = tslib_1.__decorate([
  14. command_1.CommandMetadata({
  15. name: 'help',
  16. type: 'global',
  17. description: 'Provides help for a certain command',
  18. exampleCommands: ['start'],
  19. inputs: [
  20. {
  21. name: 'command',
  22. description: 'The command you desire help with',
  23. required: false,
  24. }
  25. ],
  26. visible: false,
  27. })
  28. ], HelpCommand);
  29. exports.HelpCommand = HelpCommand;