UNPKG

fedapay-cli

Version:
35 lines (34 loc) 886 B
import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsSchedule class */ export default class PayoutsSchedule extends Payouts { /** * @param string * Description of the payouts:schedule command */ static description: string; /** * @param object * Declaration of the command flags */ static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag<number>; when: 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[] * schedule payouts command */ static examples: string[]; run(): Promise<void>; }