sentry-adonis-v6
Version:
Sentry provider for adonisjs v6 framework
12 lines (11 loc) • 330 B
TypeScript
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>;
}