import { BaseCommand } from '@adonisjs/core/ace'; export default class MakeJobCommand extends BaseCommand { /** * Command Name is used to run the command */ static commandName: string; /** * Command Name is displayed in the "help" output */ static description: string; /** * The name of the job file. */ name: string; run(): Promise; }