UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

10 lines (9 loc) 350 B
import { Task } from '../../config/task-graph'; import { LifeCycle, TaskResult } from '../life-cycle'; export declare class LegacyTaskHistoryLifeCycle implements LifeCycle { private startTimings; private taskRuns; startTasks(tasks: Task[]): void; endTasks(taskResults: TaskResult[]): Promise<void>; endCommand(): Promise<void>; }