fedapay-cli
Version:
A command-line tool for FedaPay
28 lines (27 loc) • 628 B
TypeScript
import { flags } from '@oclif/command';
import Command from '../base';
/**
* Payouts command class
*/
export default class Payouts extends Command {
/**
* The command descrition
* @var string
*/
static description: string;
/**
* @param string
* payouts usage string for help
*/
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>;
}