import { Invoker } from '../base/Invoker'; import { Tasks } from '../libs/tasks/Tasks'; import { System } from '../libs/system/System'; import { ICommand } from '../libs/commands/ICommand'; /** * Starts a task direct or in a running worker * Command: typexs task test [--targetId abc] [--outputMode worker|local] * * outputMode is per default 'worker' if one exists else startup local * */ export declare class TaskCommand implements ICommand { tasks: Tasks; invoker: Invoker; system: System; command: string; aliases: string; describe: string; beforeStartup(): void; builder(yargs: any): any; handler(argv: any): Promise; init(): Promise; shutdown(): Promise; }