@cavai/adonis-queue
Version:
Basic AdonisJS queue provider
17 lines (16 loc) • 400 B
TypeScript
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>;
}