adonisjs-scheduler
Version:
Task scheduler for AdonisJS
10 lines (9 loc) • 315 B
TypeScript
import { BaseCommand } from '@adonisjs/core/ace';
import { CommandOptions } from '@adonisjs/core/types/ace';
export default class SchedulerCommand extends BaseCommand {
static commandName: string;
static description: string;
tag?: string;
static options: CommandOptions;
run(): Promise<void>;
}