UNPKG

@dedel.alex/adonis6-swagger

Version:
22 lines (21 loc) 536 B
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>; }