import { BaseCommand } from "@adonisjs/core/ace"; import { CommandOptions } from "@adonisjs/core/types/ace"; //#region commands/make_job.d.ts declare class MakeJob extends BaseCommand { static commandName: string; static description: string; static options: CommandOptions; name: string; run(): Promise; } //#endregion export { MakeJob as default };