UNPKG

fedapay-cli

Version:
28 lines (27 loc) 634 B
import { flags } from '@oclif/command'; import Command from '../base'; /** * The base class of transactions commands */ export default class Transactions extends Command { /** * The command descrition * @var string */ static description: string; /** * The command usage * @var string */ static usage: string; /** * The command flags * @var Object */ static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; run(): Promise<void>; }