fedapay-cli
Version:
A command-line tool for FedaPay
36 lines (35 loc) • 995 B
TypeScript
import { flags } from '@oclif/command';
import Webhooks from '../webhooks';
/**
* WebhookList class extending superClass Webhooks
*/
export default class WebhooksList extends Webhooks {
/**
* @params String
* Description of the command webhooks: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>;
page: 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 webhook:list command
*/
static examples: string[];
run(): Promise<void>;
}