fedapay-cli
Version:
A command-line tool for FedaPay
31 lines (30 loc) • 881 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
/* eslint-disable lines-between-class-members */
const command_1 = require("@oclif/command");
const base_1 = tslib_1.__importDefault(require("../base"));
/**
* The base class of transactions commands
*/
class Transactions extends base_1.default {
async run() {
this._help();
}
}
exports.default = Transactions;
/**
* The command descrition
* @var string
*/
Transactions.description = 'Manage FedaPay transaction ressources';
/**
* The command usage
* @var string
*/
Transactions.usage = 'transactions:<operation> [parameters...]';
/**
* The command flags
* @var Object
*/
Transactions.flags = Object.assign(Object.assign({}, base_1.default.flags), { help: command_1.flags.help({ char: 'h', description: 'Help for transactions command.' }) });