UNPKG

fedapay-cli

Version:
31 lines (30 loc) 892 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const command_1 = require("@oclif/command"); const base_1 = tslib_1.__importDefault(require("../base")); /** * Customers class extending Command Class */ class Customers extends base_1.default { async run() { this._help(); } } exports.default = Customers; /** * @param string * Description of the command Customer */ Customers.description = 'Manage FedaPay customer ressources'; /** * @param string * custom usage string for help * this overrides the default usage */ Customers.usage = 'customers:<operation> [parameters...]'; /** * @param object * Declaration of the command flags */ Customers.flags = Object.assign(Object.assign({}, base_1.default.flags), { help: command_1.flags.help({ char: 'h', description: 'Help for customers command.' }) });