fedapay-cli
Version:
A command-line tool for FedaPay
35 lines (34 loc) • 969 B
TypeScript
import { flags } from '@oclif/command';
import Customers from '../customers';
/**
* CustomersUpdate class extending the superClass Customers
*/
export default class CustomersUpdate extends Customers {
/**
* @param string
* Description of the command Custommers:update description
*/
static description: string;
/**
* @param object
* Declaration of the command flags
*/
static flags: {
id: import("@oclif/parser/lib/flags").IOptionFlag<number>;
data: 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[]
* some examples of the custommers update use for help
*/
static examples: string[];
run(): Promise<void>;
}