UNPKG

fedapay-cli

Version:
35 lines (34 loc) 907 B
import { flags } from '@oclif/command'; import Command from '../../base'; /** * EventsList class extending super class Events */ export default class EventsList extends Command { /** * @var String * Description of the command events:list */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param Object * Declaration of the command flags */ static flags: { limit: import("@oclif/parser/lib/flags").IOptionFlag<number>; filters: flags.IOptionFlag<string[]>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; /** * @param Sting[] * Some example of use of the events:list command */ static examples: string[]; run(): Promise<void>; }