import { BaseCommand } from '@adonisjs/core/ace'; import { CommandOptions } from '@adonisjs/core/types/ace'; import Stripe from 'stripe'; export default class WebhookCommand extends BaseCommand { static commandName: string; static description: string; static options: CommandOptions; disabled: boolean; url?: string; apiVersion: Stripe.WebhookEndpointCreateParams.ApiVersion; run(): Promise; }