fedapay-cli
Version:
A command-line tool for FedaPay
33 lines (32 loc) • 853 B
TypeScript
import { Command, flags } from '@oclif/command';
/**
* SamplesList class extending the superClass Samples
*/
export default class SamplesList extends Command {
/**
* @param string
* Description of the command Samples:list description
*/
static description: string;
/**
* @param string
* custom usage string for help
* this overrides the default usage
*/
static usage: string;
/**
* @param object
* Declaration of the command flags
*/
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
/**
* @param string[]
* some examples of the custommers list use for help
*/
static examples: string[];
run(): Promise<void>;
}