import { flags } from '@oclif/command'; import Webhooks from '../webhooks'; export default class WebhooksCreate extends Webhooks { /** * @params String * Description of the command webhooks:create */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @params Object * Insertion of the different commands flags */ static flags: { data: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param Sting[] * Some example of use of the webhook:create command */ static examples: string[]; run(): Promise; }