UNPKG

fedapay-cli

Version:
33 lines (32 loc) 853 B
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>; }