@dedel.alex/adonis6-swagger
Version:
Swagger provider for AdonisJS 6
22 lines (21 loc) • 536 B
TypeScript
import { BaseCommand } from '@adonisjs/core/ace';
import { CommandOptions } from '@adonisjs/core/types/ace';
export default class GenerateSwaggerFile extends BaseCommand {
/**
* The name of the command
*/
static commandName: string;
/**
* The command description to show on the help
* screen
*/
static description: string;
/**
* Configuration options accepted by the command
*/
static options: CommandOptions;
/**
* Execute command
*/
run(): Promise<void>;
}