UNPKG

fedapay-cli

Version:
36 lines (35 loc) 1 kB
import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsCreate Class extending the superClass Payouts */ export default class PayoutsCreate extends Payouts { /** * @param string * Description of the command payouts:create */ static description: string; /** * @param Object * Insertion of the different commands flags */ static flags: { data: flags.IOptionFlag<string[]>; schedule: flags.IOptionFlag<string | undefined>; 'send-now': import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; 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 payouts:create command */ static examples: string[]; run(): Promise<void>; }