UNPKG

@cavai/adonis-queue

Version:
17 lines (16 loc) 400 B
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<void>; }