UNPKG

fedapay-cli

Version:
34 lines (33 loc) 846 B
import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsSendNow class */ export default class PayoutsSendNow extends Payouts { /** * @param string * Description of the payouts:schedule command */ static description: string; static flags: { /** *@param object * provide data passing flags */ id: flags.IOptionFlag<string[]>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; /** * @param string * Set the command usage for help */ static usage: string; /** * @param string[] * examples of send-now command for the help */ static examples: string[]; run(): Promise<void>; }