UNPKG

fedapay-cli

Version:
35 lines (34 loc) 951 B
import { flags } from '@oclif/command'; import Transactions from '../transactions'; /** * TransactionUpdate extending the superClass Transactions */ export default class TransactionsUpdate extends Transactions { /** * @params String * Description of the command transactions:update */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag<number>; data: flags.IOptionFlag<string[]>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; /** * @param Sting[] * Some example of use of the transaction:update command */ static examples: string[]; run(): Promise<void>; }