UNPKG

@fellas/adonisjs-resque

Version:
13 lines (12 loc) 360 B
import { BaseCommand } from '@adonisjs/core/ace'; import type { CommandOptions } from '@adonisjs/core/types/ace'; export default class MakeJob extends BaseCommand { static commandName: string; static description: string; static options: CommandOptions; /** * The name of the job file. */ name: string; run(): Promise<void>; }