fedapay-cli
Version:
A command-line tool for FedaPay
36 lines (35 loc) • 1.04 kB
TypeScript
import { flags } from '@oclif/command';
import Customers from '../customers';
/**
* CustomersList class extending the superClass Customers
*/
export default class CustomersList extends Customers {
/**
* @param string
* Description of the command Custommers:list description
*/
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;
/**
* @param string[]
* some examples of the custommers list use for help
*/
static examples: string[];
run(): Promise<void>;
}