UNPKG

fedapay-cli

Version:
34 lines (33 loc) 874 B
import { flags } from '@oclif/command'; import Webhooks from '../webhooks'; /** * WebhookRetrieve class extending super Class Webhooks */ export default class WebhooksRetrieve extends Webhooks { /** * @params String * Description of the command webhooks:retrieve */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag<number>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; /** * @param String * Some example with the retrieve command */ static examples: string[]; run(): Promise<void>; }