UNPKG

fedapay-cli

Version:
32 lines (31 loc) 885 B
import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsList commnd class */ export default class PayoutsList extends Payouts { /** * @param string * Description of payouts:delete command */ static description: string; /** * @param object * Declaration of the command flags */ static flags: { limit: import("@oclif/parser/lib/flags").IOptionFlag<number>; filters: flags.IOptionFlag<string[]>; page: import("@oclif/parser/lib/flags").IOptionFlag<number>; 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; static examples: string[]; run(): Promise<void>; }