UNPKG

fedapay-cli

Version:
35 lines (34 loc) 946 B
import { flags } from '@oclif/command'; import Webhooks from '../webhooks'; /** * WebhookDelete class extending super class Webhooks */ export default class WebhooksDelete extends Webhooks { /** * @params String * Description of the command webhooks:delete */ 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>; confirm: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; /** * @param String[] * Some example of use of the delete command */ static examples: string[]; run(): Promise<void>; }