fedapay-cli
Version:
A command-line tool for FedaPay
35 lines (34 loc) • 910 B
TypeScript
import { flags } from '@oclif/command';
import Command from '../../base';
/**
* EventsTrigger class extending super class Events
*/
export default class EventsTrigger extends Command {
/**
* @params String
* Description of the command webhooks:token
*/
static description: string;
/**
* The command usage
* @var string
*/
static usage: string;
/**
* @param object
* Declaration of the command flags
*/
static flags: {
webhook: import("@oclif/parser/lib/flags").IOptionFlag<number>;
event: flags.IOptionFlag<string>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
/**
* @param String[]
* Some example with the token command
*/
static examples: string[];
run(): Promise<void>;
}