fedapay-cli
Version:
A command-line tool for FedaPay
34 lines (33 loc) • 854 B
TypeScript
import { flags } from '@oclif/command';
import Command from '../../base';
/**
* EventsRetrieve class extending super class Events
*/
export default class EventsRetrieve extends Command {
/**
* @var string
* Description of the command event:retrieve
*/
static description: string;
/**
* The command usage
* @var string
*/
static usage: string;
/**
* @var Object
* Declaration of the command flag
*/
static flags: {
id: flags.IOptionFlag<string | undefined>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
/**
* @param String
* Some example with the events:retrieve command
*/
static examples: string[];
run(): Promise<void>;
}