UNPKG

sentry-adonis-v6

Version:
12 lines (11 loc) 330 B
import { BaseCommand } from '@adonisjs/core/ace'; import { CommandOptions } from '@adonisjs/core/types/ace'; export default class SentryTest extends BaseCommand { static commandName: string; static description: string; static options: CommandOptions; /** * Execute command */ run(): Promise<void>; }