fedapay-cli
Version:
A command-line tool for FedaPay
39 lines (38 loc) • 987 B
TypeScript
import { flags } from '@oclif/command';
import Payouts from '../payouts';
/**
* PayoutsDelete Class
*/
export default class PayoutsDelete extends Payouts {
/**
* @param string
* Description of payouts:delete command
*/
static description: string;
/**
* @param Object
* delete command flags
*/
static flags: {
id: import("@oclif/parser/lib/flags").IOptionFlag<number>;
confirm: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
/**
* @param Object
* delete command flags
*/
environment: flags.IOptionFlag<string>;
};
/**
* @param string
* Set the command usage for help
*/
static usage: string;
/**
* @param string[]
* examples for the delete commands
*/
static examples: string[];
run(): Promise<void>;
}